:root {
    --color-primary: #0b5c7e; /* Deep Teal */
    --color-secondary: #0a4b66; /* Darker Teal */
    --color-accent: #f39c12; /* Golden Orange */
    --color-accent-hover: #e67e22; /* Darker Orange */
    --color-light: #f8f9fa;
    --font-family-base: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family-base);
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-base);
}

.text-accent {
    color: var(--color-accent) !important;
}

.bg-primary-soft {
    background-color: rgba(11, 92, 126, 0.1);
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-accent {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: white;
}

.section-padding {
    padding: 80px 0;
}

.divider {
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

/* Navbar */
.custom-navbar {
    transition: all 0.3s ease;
    background: transparent;
    padding: 1.5rem 0;
}

.custom-navbar.scrolled {
    background: rgba(11, 92, 126, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.custom-navbar .navbar-brand, .custom-navbar .nav-link {
    color: white !important;
}

.custom-navbar .nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
    width: 100%;
}

.nav-cta-btn {
    background: var(--color-accent);
    border: none;
    color: white !important;
    font-weight: 600;
}

.nav-cta-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* offset for navbar */
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243,156,18,0.15) 0%, rgba(243,156,18,0) 70%);
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

.text-shadow-glow {
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.glow-backdrop {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(243,156,18,0.2) 0%, rgba(243,156,18,0) 70%);
    z-index: 1;
}

.hero-btn {
    background: var(--color-accent);
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.4);
}

.hero-btn-outline {
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s;
}

.hero-btn-outline:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-3px);
}

.floating-camera {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(243, 156, 18, 0); }
    100% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0); }
}

.pulse-animation {
    animation: pulse-glow 2s infinite;
}

.pulse-animation-delay {
    animation: pulse-glow 2s infinite;
    animation-delay: 1s;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.service-card .icon-wrapper {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background: var(--color-primary);
    color: white !important;
    transform: scale(1.1) rotate(5deg);
}

/* Feature Box */
.feature-box {
    padding: 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    transition: background 0.3s;
}

.feature-box:hover {
    background: rgba(255,255,255,0.1);
}

/* Gallery */
.gallery-item {
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 92, 126, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Process Timeline */
.process-timeline {
    z-index: 1;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: var(--color-primary);
    z-index: -1;
    opacity: 0.2;
}

.step-icon {
    width: 80px;
    height: 80px;
    transition: transform 0.3s;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    background: var(--color-primary) !important;
    color: white !important;
}

/* Floating Buttons */
.floating-buttons-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--color-accent);
}

/* Carousel custom styles */
.custom-carousel-btn {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.custom-carousel-btn .carousel-control-prev-icon,
.custom-carousel-btn .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
}

@media (max-width: 991px) {
    .custom-navbar {
        background: var(--color-primary);
    }
    
    .timeline-line {
        display: none !important;
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-img-mobile {
        max-width: 75%;
        margin: 0 auto;
        filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
    }
}