/* COMPLETE REDESIGN - Unique, Personal, Non-Corporate */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&family=Bebas+Neue&display=swap');

:root {
    --primary: #1a56db;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent: #0891b2;
    --accent-light: #06b6d4;
    --purple: #7c3aed;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --bg: #f1f5f9;
    --white: #ffffff;
}

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

body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Unique Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(26, 86, 219, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(8, 145, 178, 0.06) 0%, transparent 40%),
        linear-gradient(45deg, transparent 48%, rgba(26, 86, 219, 0.02) 49%, rgba(26, 86, 219, 0.02) 51%, transparent 52%);
    background-size: 100% 100%, 100% 100%, 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Navigation - Sidebar Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.25rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--dark) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 1;
    min-width: 0;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.navbar-brand span,
.navbar-brand-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(0.75rem, 2vw + 0.5rem, 1.5rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100vw - 120px);
    flex-shrink: 1;
}

.nav-link {
    font-weight: 500;
    color: var(--text) !important;
    padding: 0.5rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary) !important;
    background: rgba(26, 86, 219, 0.05);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cdefs%3e%3clinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3e%3cstop offset='0%25' style='stop-color:%231a56db;stop-opacity:1' /%3e%3cstop offset='100%25' style='stop-color:%230891b2;stop-opacity:1' /%3e%3c/linearGradient%3e%3c/defs%3e%3cpath stroke='url(%23grad)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-outline-light {
    border: 3px solid #1e3a8a;
    color: #ffffff !important;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1a56db 100%) !important;
    border-radius: 25px;
    padding: 0.6rem 1.75rem;
    font-weight: 800;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5), 0 2px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.btn-outline-light:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1a56db 50%, #2563eb 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: #1e3a8a;
}

.navbar .btn-outline-light {
    border: 3px solid #1e3a8a;
    color: #ffffff !important;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1a56db 100%) !important;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.navbar .btn-outline-light:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1a56db 50%, #2563eb 100%) !important;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.navbar .btn-outline-light i {
    filter: brightness(1.3) contrast(1.2);
    font-weight: 800;
    font-size: 1.1em;
}

/* Hero - Magazine Style Layout */
.hero-section {
    min-height: 100vh;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e40af 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    word-wrap: break-word;
}

.hero-section .lead {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 650px;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-section .d-flex.gap-3 {
    gap: 1rem !important;
    margin-bottom: 3rem;
}

.hero-image-placeholder {
    position: relative;
    min-height: 450px;
    max-height: 600px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    padding: 3rem;
    overflow: hidden;
}

.hero-image-placeholder:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-image-placeholder i {
    font-size: clamp(4rem, 8vw, 7rem);
    color: white;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: block;
}

.hero-image-placeholder p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.hero-section .d-flex.gap-4 {
    gap: 1.5rem !important;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-section .d-flex.gap-4 div {
    background: rgba(255, 255, 255, 0.12);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.hero-section .d-flex.gap-4 i {
    color: #4ade80;
    margin-right: 0.5rem;
}

/* Buttons - Modern, Bold */
.btn {
    border-radius: 30px;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 6px 25px rgba(26, 86, 219, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 35px rgba(26, 86, 219, 0.5);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
    background: #f8fafc;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-4px) scale(1.05);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.1rem;
}

/* Services - Creative Grid with Overlaps */
#services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e0e7ff 50%, #f1f5f9 100%);
    position: relative;
}

#services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg), transparent);
    pointer-events: none;
}

#services h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark);
    letter-spacing: 1px;
    padding: 0 1rem;
}

#services .lead {
    text-align: center !important;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    display: block;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 0;
    border: none;
    box-shadow: 0 8px 30px rgba(26, 86, 219, 0.12);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(26, 86, 219, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

.service-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    text-align: center;
}

.service-card .card-body .btn {
    align-self: center;
    margin-top: auto;
    width: auto;
    padding: 6px 20px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
}

.service-card .card-body .btn i.bi-envelope {
    opacity: 1;
    filter: contrast(1.3) brightness(1.15);
    font-weight: 600;
}

.service-card .card-body .btn-primary i.bi-envelope {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.service-card:nth-child(1) i {
    color: var(--primary);
}

.service-card:nth-child(2) i {
    color: var(--accent);
}

.service-card:nth-child(3) i {
    color: var(--purple);
}

.service-card .card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.service-card .card-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.service-card .list-unstyled {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-card .list-unstyled li {
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.service-card .list-unstyled li i {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.service-card .btn {
    align-self: center;
    margin-top: auto;
    width: auto;
    min-width: 100px;
    padding: 6px 20px;
    font-size: 0.85rem;
}

.service-card .btn i.bi-envelope {
    opacity: 1;
    filter: contrast(1.2) brightness(1.1);
}

/* About - Split with Creative Layout */
#about {
    padding: 160px 0 120px !important;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 30%, #ffffff 70%, #f0f9ff 100%);
    position: relative;
    margin-top: 40px;
}

#about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


#about h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--dark);
    letter-spacing: 1px;
    padding-right: 1rem;
}

#about .lead {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
}

#about p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 50%, #60a5fa 100%);
    border-radius: 40px;
    min-height: 450px;
    max-height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 3px solid rgba(26, 86, 219, 0.1);
    transform: perspective(1000px) rotateY(5deg) rotateX(-2deg);
    transition: transform 0.5s ease;
    position: relative;
    overflow: hidden;
    padding: 3rem;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-image-placeholder:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.about-image-placeholder i {
    font-size: 6rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.about-image-placeholder p {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    z-index: 1;
    margin: 0;
}

#about .row.g-3 {
    margin: 2rem 0;
}

#about .row.g-3 .col-6 {
    padding: 1rem;
}

#about .d-flex.align-items-center {
    background: linear-gradient(90deg, rgba(26, 86, 219, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

#about .d-flex.align-items-center:hover {
    background: rgba(26, 86, 219, 0.1);
    transform: translateX(5px);
}

#about .d-flex.align-items-center i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Testimonials Section */
#testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
}

#testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#testimonials h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark);
    letter-spacing: 1px;
}

#testimonials .lead {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 2px solid rgba(26, 86, 219, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(26, 86, 219, 0.15);
    border-color: var(--primary-light);
}

.testimonial-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card .card-text {
    color: var(--text);
    line-height: 1.8;
    font-size: 1rem;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-card .card-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card .bi-star-fill {
    font-size: 1.1rem;
    margin-right: 2px;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-card h6 {
    color: var(--dark);
    font-size: 1rem;
}

.testimonial-card small {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    #testimonials {
        padding: 80px 0;
    }
    
    #testimonials h2 {
        margin-bottom: 1rem;
    }
    
    #testimonials .lead {
        margin-bottom: 2rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card .card-text {
        font-size: 0.95rem;
        padding-left: 1rem;
    }
}

/* Contact - Modern Card Layout */
#contact {
    padding: 140px 0 160px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e0e7ff 30%, #f1f5f9 70%, #e0f2fe 100%);
    position: relative;
    margin-top: 40px;
}

#contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


#contact h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark);
    letter-spacing: 1px;
    padding: 0 1rem;
}

#contact .lead {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.clickable-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(26, 86, 219, 0.12);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(26, 86, 219, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.clickable-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.clickable-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

.clickable-card i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.clickable-card:hover i {
    transform: scale(1.25) rotate(-10deg);
}

.clickable-card:nth-child(1) i {
    color: var(--primary);
}

.clickable-card:nth-child(2) i {
    color: var(--accent);
}

.clickable-card:nth-child(3) i {
    color: var(--purple);
}

.clickable-card .card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.clickable-card .card-text {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.clickable-card a {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.clickable-card a:hover {
    color: var(--primary-dark);
}

.clickable-card small {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.clickable-card .btn-primary {
    background: var(--primary-dark);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.5);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.clickable-card .btn-primary:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.6);
    transform: translateY(-2px);
}

.clickable-card .btn-primary i {
    filter: brightness(1.2) contrast(1.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Contact Form */
#contact .card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 30px;
    border: 2px solid rgba(26, 86, 219, 0.1);
    box-shadow: 0 15px 50px rgba(26, 86, 219, 0.15);
    overflow: hidden;
}

#contact .card-body {
    padding: 3.5rem;
}

#contact .card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--dark);
}

.form-control,
.form-select {
    border-radius: 15px;
    border: 2px solid var(--bg);
    padding: 14px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

/* Footer - Minimal, Clean */
footer {
    background: var(--dark);
    color: white;
    padding: 120px 0 40px;
    position: relative;
    margin-top: 60px;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

footer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg), var(--dark));
    pointer-events: none;
}

footer h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: white;
}

footer p,
footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.8;
}

footer a:hover {
    color: white;
}

footer .btn-primary {
    background: var(--primary);
    border: none;
    margin-top: 0.5rem;
}

footer .btn-primary:hover {
    background: var(--primary-light);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

/* Floating Contact */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 12px;
    text-decoration: none;
}

.floating-btn-main {
    background: var(--primary);
    width: 70px;
    height: 70px;
}

.floating-btn-main:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(26, 86, 219, 0.4);
}

.floating-contact-options {
    display: none;
    flex-direction: column;
    margin-bottom: 12px;
}

.floating-contact-options.show {
    display: flex;
}

.floating-btn-call {
    background: var(--accent);
}

.floating-btn-email {
    background: var(--primary);
}

.floating-btn-sms {
    background: var(--accent-light);
}

.floating-btn-quote {
    background: var(--purple);
}

.floating-btn:hover {
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar-brand img {
        height: 50px;
    }
    
    .navbar-brand-text {
        font-size: clamp(0.65rem, 3vw + 0.3rem, 1.2rem) !important;
        max-width: calc(100vw - 100px) !important;
    }
    
    .navbar .container,
    .hero-section .container,
    #services .container,
    #about .container,
    #contact .container,
    footer .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        min-height: auto;
        padding: 130px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-section .lead {
        margin-bottom: 2rem;
    }
    
    .hero-image-placeholder {
        min-height: 300px;
        max-height: 400px;
        margin-top: 2rem;
        transform: none;
        padding: 2rem;
    }
    
    .hero-image-placeholder:hover {
        transform: scale(1.02);
    }
    
    .hero-image-placeholder i {
        font-size: 4rem;
        margin-bottom: 1rem;
    }
    
    #services,
    #about,
    #contact {
        padding: 80px 0;
    }
    
    #services h2,
    #about h2,
    #contact h2 {
        margin-bottom: 1rem;
        padding: 0;
    }
    
    #services .lead,
    #contact .lead {
        margin-bottom: 3rem;
        padding: 0;
    }
    
    .about-image-placeholder {
        min-height: 350px;
        max-height: 400px;
        transform: none;
        margin-top: 2rem;
        padding: 2rem;
    }
    
    .about-image-placeholder:hover {
        transform: scale(1.02);
    }
    
    .about-image-placeholder i {
        font-size: 4rem;
    }
    
    .service-card,
    .clickable-card {
        margin-bottom: 2rem;
    }
    
    .service-card .card-body {
        padding: 2rem;
    }
    
    .service-card .list-unstyled {
        grid-template-columns: 1fr;
    }
    
    .clickable-card {
        padding: 2rem;
    }
    
    #contact .card-body {
        padding: 2rem;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .floating-btn-main {
        width: 60px;
        height: 60px;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Utilities */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

html {
    scroll-behavior: smooth;
}

.card {
    border: none;
}

.shadow-sm {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.shadow {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
}

.bg-light {
    background-color: var(--bg) !important;
}





