/* CSS Variables */
:root {
    --primary: #2c5e92;
    --secondary: #e9c46a;
    --accent: #e76f51;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1050;
    max-width: 400px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn:hover {
    background-color: #d45d40;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--primary);
    border: 2px solid var(--primary);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: linear-gradient(135deg, rgba(44, 94, 146, 0.95) 0%, rgba(33, 37, 41, 0.98) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

header.scrolled .logo h1 {
    color: white;
}

header.scrolled .logo h1 span {
    color: var(--secondary);
}

header.scrolled nav ul li a {
    color: white;
}

header.scrolled nav ul li a:hover,
header.scrolled nav ul li a.active {
    color: var(--secondary);
}

.header-container {
    display: flex;
    padding: 18px 0;
    position: relative;
}

.header-main-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 32px;
    margin: 0;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.logo h1:hover {
    transform: scale(1.05);
    text-shadow: 0 2px 10px rgba(44, 94, 146, 0.3);
}

.logo span {
    color: var(--accent);
    position: relative;
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.logo:hover span::after {
    width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

nav ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent);
    transform: translateY(-2px);
}

nav ul li a:hover::before,
nav ul li a.active::before {
    width: 100%;
}

/* Header Call-to-Action */
.header-cta {
    flex-shrink: 0;
}

.header-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.header-cta-btn::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.6s;
}

.header-cta-btn:hover::before {
    left: 100%;
}

.header-cta-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: white;
    text-decoration: none;
}

.header-cta-btn i {
    font-size: 16px;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

header.scrolled .header-cta-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

header.scrolled .header-cta-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
}

/* WhatsApp Icon in Header */
.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(44, 94, 146, 0.2);
    position: relative;
    overflow: hidden;
}

.sidebar-toggle::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.6s;
}

.sidebar-toggle:hover::before {
    left: 100%;
}

.sidebar-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 94, 146, 0.3);
}

.sidebar-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.sidebar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.sidebar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.sidebar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.sidebar-header::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    z-index: 1;
}

.sidebar-header h3 {
    color: white;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.sidebar-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin: 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    border-left: 3px solid transparent;
}

.sidebar-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transition: width 0.3s ease;
    z-index: 1;
}

.sidebar-nav a:hover::before,
.sidebar-nav a.active::before {
    width: 100%;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: white;
    border-left-color: var(--accent);
    background: rgba(231, 111, 81, 0.1);
    transform: translateX(5px);
}

.sidebar-nav a i {
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.sidebar-nav a span {
    position: relative;
    z-index: 2;
}

.sidebar-contact {
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.sidebar-contact h4 {
    color: var(--secondary);
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.sidebar-contact .contact-item:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.sidebar-contact .contact-item i {
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: var(--accent);
}

.sidebar-contact .contact-item a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-contact .contact-item a:hover {
    color: var(--secondary);
}

.sidebar-contact .fa-whatsapp {
    color: #25D366 !important;
}

.sidebar-contact .fa-envelope {
    color: var(--accent) !important;
}

.sidebar-contact .fa-clock {
    color: var(--secondary) !important;
}

.sidebar-contact .fa-tools {
    color: var(--primary) !important;
}

.sidebar-social {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-social h5 {
    color: var(--secondary);
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.sidebar-social .social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sidebar-social .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #e0e0e0;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-social .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.sidebar-social .social-links a:hover::before {
    transform: scale(1);
}

.sidebar-social .social-links a:hover {
    color: white;
    transform: translateY(-2px);
}

.sidebar-social .social-links a i {
    position: relative;
    z-index: 2;
}

/* Individual social media colors on hover */
.sidebar-social .social-links a[title="Facebook"]:hover {
    background: #1877F2;
}

.sidebar-social .social-links a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.sidebar-social .social-links a[title="Twitter"]:hover {
    background: #1DA1F2;
}

.sidebar-social .social-links a[title="LinkedIn"]:hover {
    background: #0077B5;
}

.sidebar-social .social-links a[title="YouTube"]:hover {
    background: #FF0000;
}

.sidebar-social .social-links a[title="TikTok"]:hover {
    background: #000000;
}

/* Hero Section */
.hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 94, 146, 0.85) 0%, rgba(231, 111, 81, 0.75) 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-background.png') no-repeat center center;
    background-size: contain;
    animation: heroSlide 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes heroSlide {
    0%, 100% {
        transform: scale(1);
        filter: brightness(0.8);
    }
    25% {
        transform: scale(1.05);
        filter: brightness(0.9);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(0.7);
    }
    75% {
        transform: scale(1.05);
        filter: brightness(0.9);
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(233, 196, 106, 0.6);
    border-radius: 50%;
    animation: floatParticles 8s linear infinite;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes floatParticles {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    animation: heroContentSlide 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

@keyframes heroContentSlide {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: titleSlideIn 2s ease-out 0.5s both;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h2 span {
    color: var(--secondary);
    display: inline-block;
    animation: spanGlow 3s ease-in-out infinite;
}

@keyframes spanGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(233, 196, 106, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(233, 196, 106, 0.8), 0 0 30px rgba(233, 196, 106, 0.6);
    }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 2s ease-out 1s both;
    line-height: 1.5;
}

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

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
    animation: buttonsSlideIn 2.5s ease-out 1.5s both;
}

@keyframes buttonsSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-btns .btn {
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btns .btn::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.6s;
}

.hero-btns .btn:hover::before {
    left: 100%;
}

.hero-btns .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    margin-top: 15px;
    color: var(--gray);
    font-size: 1.1rem;
}

/* About Section */
.about-content-centered {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-main h3 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-main > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(44, 94, 146, 0.1);
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.feature-item i {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.feature-item h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    background: #f8f9fa;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Featured Carousel Section */
.featured-carousel {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 40px;
}

.carousel-slide img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    background: #f8f9fa;
}

.carousel-slide:hover img {
    transform: scale(1.02);
}

.slide-caption {
    text-align: center;
    margin-top: 25px;
    max-width: 400px;
}

.slide-caption h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.slide-caption p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 94, 146, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(44, 94, 146, 0.3);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 0 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--secondary);
}

/* Murals Carousel Specific Styles */
.murals-carousel {
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaf6 100%);
    padding: 80px 0;
}

.murals-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.murals-carousel-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.murals-carousel .carousel-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 30px;
}

.murals-carousel .carousel-slide img {
    width: 100%;
    max-width: 700px;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.murals-carousel .carousel-slide:hover img {
    transform: scale(1.02);
}

.murals-carousel .slide-caption {
    text-align: center;
    margin-top: 25px;
    max-width: 600px;
}

.murals-carousel .slide-caption h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.murals-carousel .slide-caption p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
}

.murals-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding: 0 40px;
}

.murals-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.murals-indicators .indicator.active {
    background: var(--accent);
    transform: scale(1.3);
}

.murals-indicators .indicator:hover {
    background: var(--secondary);
}

/* Responsive Murals Carousel */
@media (max-width: 768px) {
    .murals-carousel {
        padding: 60px 0;
    }
    
    .murals-carousel-container {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .murals-carousel .carousel-slide {
        padding: 20px;
    }
    
    .murals-carousel .carousel-slide img {
        height: 350px;
        max-width: 100%;
    }
    
    .murals-carousel .slide-caption h3 {
        font-size: 20px;
    }
    
    .murals-carousel .slide-caption p {
        font-size: 14px;
    }
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-container {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .carousel-slide {
        padding: 20px;
    }
    
    .carousel-slide img {
        height: 300px;
        max-width: 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .slide-caption h3 {
        font-size: 1.3rem;
    }
    
    .slide-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .featured-carousel {
        padding: 50px 0;
    }
    
    .carousel-slide {
        padding: 15px;
    }
    
    .carousel-slide img {
        height: 250px;
    }
    
    .slide-caption h3 {
        font-size: 1.2rem;
    }
    
    .carousel-indicators {
        margin-top: 20px;
        padding: 0 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Portfolio Section */
.portfolio {
    background-color: #f8f9fa;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.portfolio-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    background: #f8f9fa;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 94, 146, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
    color: white;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

#lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 20px;
    max-width: 600px;
    margin-top: 20px;
}

.lightbox-caption h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.lightbox-caption p {
    color: #cccccc;
    margin: 0;
    line-height: 1.6;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

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

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }
    to { 
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    #lightbox-image {
        max-height: 60vh;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .lightbox-nav {
        padding: 0 10px;
    }
    
    .lightbox-caption {
        padding: 15px;
    }
    
    .lightbox-caption h4 {
        font-size: 1.2rem;
    }
}
}

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

.portfolio-overlay h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(to right, var(--primary), #3a7cc4);
    color: white;
}

.testimonials .section-title h2 {
    color: white;
}

.testimonials .section-title h2::after {
    background-color: var(--secondary);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h5 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-details {
    margin: 25px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

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

/* Specific icon colors */
.contact-icon .fa-map-marker-alt {
    color: var(--accent);
}

.contact-icon .fa-phone {
    color: var(--primary);
}

.contact-icon .fa-whatsapp {
    color: #25D366;
}

.contact-icon .fa-envelope {
    color: var(--secondary);
}

.contact-icon .fa-clock {
    color: var(--gray);
}

.contact-item h5 {
    margin: 0 0 5px 0;
    color: var(--primary);
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* WhatsApp specific styling */
.contact-item .fa-whatsapp {
    color: #25D366;
}

.contact-item a[href*="wa.me"] {
    color: #25D366;
    font-weight: 500;
}

.contact-item a[href*="wa.me"]:hover {
    color: #128C7E;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(44, 94, 146, 0.3);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

footer::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    z-index: 1;
}

footer::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    animation: footerGradient 8s ease-in-out infinite;
}

@keyframes footerGradient {
    0%, 100% {
        background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    }
    50% {
        background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary), var(--accent));
    }
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

.footer-row-compact {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Simple Contact Items - Icons Only */
.contact-item-simple {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
}

.contact-item-simple i {
    color: var(--secondary);
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
}

.contact-item-simple span,
.contact-item-simple a {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.4;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-simple a:hover {
    color: var(--secondary);
}

/* WhatsApp specific styling */
.contact-item-simple .fa-whatsapp {
    color: #25D366 !important;
}

.contact-item-simple a[href*="wa.me"] {
    color: #25D366;
}

.contact-item-simple a[href*="wa.me"]:hover {
    color: #128C7E;
}

/* Simple Hours Items */
.hours-item-simple {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hours-item-simple i {
    color: var(--secondary);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.hours-item-simple .fa-times-circle {
    color: #e74c3c;
}

.hours-item-simple span {
    color: #cccccc;
    font-size: 15px;
}

/* Compact Footer Styles */
.footer-services-compact h4,
.footer-contact-compact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

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

.footer-links-compact li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    padding: 4px 0;
}

.footer-links-compact li a:hover {
    color: var(--secondary);
    transform: translateX(3px);
}

.footer-links-compact li a i {
    color: var(--secondary);
    width: 14px;
    font-size: 12px;
    flex-shrink: 0;
}

/* Compact Contact Items */
.contact-item-compact {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.contact-item-compact i {
    color: var(--secondary);
    font-size: 16px;
    width: 18px;
    flex-shrink: 0;
}

.contact-item-compact span,
.contact-item-compact a {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-compact a:hover {
    color: var(--secondary);
}

.contact-info-compact {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Hours Info */
.hours-info {
    margin-bottom: 25px;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hours-item i {
    color: var(--secondary);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.hours-item .fa-times-circle {
    color: #e74c3c;
}

.hours-day {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hours-time {
    color: #cccccc;
    font-size: 14px;
    margin-top: 2px;
}

/* Footer CTA */
.footer-cta {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(231, 111, 81, 0.2);
}

.footer-cta p {
    color: #cccccc;
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.4);
    color: white;
    text-decoration: none;
}

/* Footer Links with Icons */
.footer-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a i {
    color: var(--secondary);
    width: 16px;
    font-size: 14px;
}

/* Footer Bottom Improvements */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

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

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 14px;
}

.footer-bottom-links a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

.footer-bottom-links span {
    opacity: 0.6;
}

/* Responsive Footer Styles */
@media (max-width: 1024px) {
    .footer-row {
        gap: 25px;
    }
    
    .footer-row-compact {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-row,
    .footer-row-compact {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-container {
        gap: 25px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-row-compact {
        gap: 20px;
    }
    
    .footer-services-compact h4,
    .footer-contact-compact h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-links-compact li a {
        font-size: 13px;
    }
    
    .contact-item-compact span,
    .contact-item-compact a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 50px 0 30px;
    }
    
    .footer-container {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-col h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .contact-item-footer {
        margin-bottom: 12px;
    }
    
    .hours-item {
        margin-bottom: 10px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        margin-top: 30px;
    }
}

.footer-col {
    opacity: 0;
    transform: translateY(30px);
    animation: footerSlideIn 1s ease-out forwards;
}

.footer-col:nth-child(1) { animation-delay: 0.2s; }
.footer-col:nth-child(2) { animation-delay: 0.4s; }
.footer-col:nth-child(3) { animation-delay: 0.6s; }
.footer-col:nth-child(4) { animation-delay: 0.8s; }

@keyframes footerSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    bottom: 0;
    left: 0;
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(231, 111, 81, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(231, 111, 81, 0.6);
    }
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 8px 0;
    font-weight: 400;
}

.footer-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(10px);
}

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

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #333, #444);
    color: white;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.social-links a:nth-child(1):hover {
    background: linear-gradient(45deg, #3b5998, #4c70ba);
}

.social-links a:nth-child(2):hover {
    background: linear-gradient(45deg, #e4405f, #fd5949);
}

.social-links a:nth-child(3):hover {
    background: linear-gradient(45deg, #1da1f2, #0d95e8);
}

.social-links a:nth-child(4):hover {
    background: linear-gradient(45deg, #0077b5, #005885);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    position: relative;
    z-index: 2;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-bottom:hover p {
    opacity: 1;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary);
    width: 20px;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* WhatsApp styling in footer */
.contact-info .fa-whatsapp {
    color: #25D366 !important;
}

.contact-info a[href*="wa.me"] {
    color: #25D366;
}

.contact-info a[href*="wa.me"]:hover {
    color: #128C7E;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover::before {
    opacity: 1;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

@keyframes whatsappFloat {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    25% {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
    75% {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
    
    nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 10px 0;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 20px;
        background: rgba(44, 94, 146, 0.1);
        transition: all 0.3s ease;
    }
    
    nav ul li a:hover,
    nav ul li a.active {
        background: var(--accent);
        color: white;
        transform: translateY(-2px);
    }
    
    nav ul li a::before {
        display: none;
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }
    
    .header-cta {
        order: -1;
        margin-bottom: 5px;
    }
    
    .header-cta-btn {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 20px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .about-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .about-main h3 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    /* Header adjustments for mobile */
    .header-container {
        padding: 15px 0;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .whatsapp-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .sidebar-toggle {
        width: 40px;
        height: 40px;
    }
    
    .sidebar {
        width: 300px;
    }
    
    /* Mobile footer layout */
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    /* Company info takes full width on mobile */
    .footer-col:first-child {
        order: 1;
        margin-bottom: 20px;
    }
    
    /* Container for Services and Contact side by side */
    .footer-mobile-row {
        display: flex;
        gap: 20px;
        order: 2;
    }
    
    /* Services and Contact arranged horizontally */
    .footer-services,
    .footer-contact {
        flex: 1;
        min-width: 0;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 5px;
    }
    
    .footer-links li a {
        font-size: 0.9rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
}

/* Video Gallery Section */
.video-gallery {
    background: linear-gradient(135deg, rgba(44, 94, 146, 0.05) 0%, rgba(233, 196, 106, 0.05) 100%);
    padding: 80px 0;
}

.video-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.video-carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.video-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
}

.video-slide.active {
    display: flex;
}

.video-item {
    width: 100%;
    background: white;
    overflow: hidden;
    position: relative;
}

.video-item video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.video-caption {
    padding: 30px;
    text-align: center;
    background: white;
}

.video-caption h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.video-caption p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.video-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    padding: 0 30px 25px;
    background: white;
}

.video-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-indicators .indicator.active {
    background: var(--accent);
    transform: scale(1.2);
}

.video-indicators .indicator:hover {
    background: var(--secondary);
}

/* Video controls styling */
.video-item video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
}

/* Video responsive design */
@media (max-width: 768px) {
    .video-carousel-container {
        margin-top: 30px;
        max-width: 100%;
    }
    
    .video-item video {
        height: 280px;
    }
    
    .video-caption {
        padding: 25px 20px;
    }
    
    .video-caption h4 {
        font-size: 1.2rem;
    }
    
    .video-caption p {
        font-size: 0.95rem;
    }
    
    .video-indicators {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .video-gallery {
        padding: 60px 0;
    }
    
    .video-carousel-container {
        margin-top: 25px;
    }
    
    .video-item video {
        height: 220px;
    }
    
    .video-caption {
        padding: 20px 15px;
    }
    
    .video-caption h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .video-caption p {
        font-size: 0.9rem;
    }
    
    .video-indicators {
        padding: 0 15px 15px;
    }
    
    .video-indicators .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Branding Section */
.branding-section {
    background: linear-gradient(135deg, rgba(233, 196, 106, 0.08) 0%, rgba(44, 94, 146, 0.05) 100%);
    padding: 80px 0;
}

.branding-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.branding-carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.branding-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
}

.branding-slide.active {
    display: flex;
}

.branding-item {
    width: 100%;
    background: white;
    overflow: hidden;
    position: relative;
}

.branding-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

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

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

.branding-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 25px 25px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.branding-item:hover .branding-overlay {
    transform: translateY(0);
}

.branding-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    padding: 0 30px 25px;
    background: white;
}

.branding-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.branding-indicators .indicator.active {
    background: var(--accent);
    transform: scale(1.2);
}

.branding-indicators .indicator:hover {
    background: var(--secondary);
}

.branding-info h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.branding-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.branding-features {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(44, 94, 146, 0.1);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.branding-features .feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.branding-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.branding-features .feature-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.branding-features .feature-item h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.branding-features .feature-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Branding responsive design */
@media (max-width: 768px) {
    .branding-carousel-container {
        margin-top: 30px;
        max-width: 100%;
    }
    
    .branding-image {
        height: 280px;
    }
    
    .branding-indicators {
        padding: 0 20px 20px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .branding-features {
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .branding-features .feature-item {
        padding: 25px 15px;
    }
    
    .branding-features .feature-item i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .branding-section {
        padding: 60px 0;
    }
    
    .branding-carousel-container {
        margin-top: 25px;
    }
    
    .branding-image {
        height: 220px;
    }
    
    .branding-indicators {
        padding: 0 15px 15px;
    }
    
    .branding-indicators .indicator {
        width: 10px;
        height: 10px;
    }
    
    .branding-overlay {
        padding: 30px 20px 20px;
    }
    
    .branding-info h4 {
        font-size: 1.1rem;
    }
    
    .branding-info p {
        font-size: 0.9rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .branding-features {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .branding-features .feature-item {
        padding: 20px 15px;
    }
    
    .branding-features .feature-item i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .branding-features .feature-item h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .branding-features .feature-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }
    
    .header-container {
        padding: 12px 0;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .whatsapp-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .sidebar-toggle {
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    
    .sidebar {
        width: 280px;
    }
    
    .sidebar-header {
        padding: 20px;
    }
    
    .sidebar-header h3 {
        font-size: 20px;
    }
    
    .sidebar-nav a {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .sidebar-contact {
        padding: 20px;
    }
    
    .sidebar-contact .contact-item {
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .sidebar-contact .contact-item i {
        font-size: 14px;
        width: 18px;
    }
    
    .sidebar-social {
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .sidebar-social h5 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .sidebar-social .social-links {
        gap: 10px;
    }
    
    .sidebar-social .social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        margin-top: 120px;
    }
    
    /* Ultra mobile footer adjustments */
    .footer-services,
    .footer-contact {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-col h4 {
        font-size: 1rem;
    }
    
    .footer-links li a,
    .contact-info p {
        font-size: 0.85rem;
    }
}
