:root {
    --primary-color: #a62d2d; /* Wine Red from logo */
    --primary-dark: #8b1a1a;
    --secondary-color: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary-color);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

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

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

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar:not(.transparent) {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color);
    margin: 0 10px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section - Ultra Modern */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/slider07.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    padding: 100px 0;
    transition: background-image 1.5s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, rgba(166, 45, 45, 0.8), rgba(0, 0, 0, 0.8), rgba(139, 26, 26, 0.7));
    background-size: 400% 400%;
    animation: gradient-anim 15s ease infinite;
    z-index: 1;
}

@keyframes gradient-anim {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.navbar.transparent {
    background: transparent !important;
    box-shadow: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar.transparent .nav-link {
    color: rgba(255,255,255,0.9) !important;
}

.navbar.transparent .nav-link:hover {
    color: var(--white) !important;
}

.navbar.transparent .navbar-brand img {
    /* filter: brightness(0) invert(1); */
}

.navbar .nav-link {
    color: var(--secondary-color) !important;
    transition: var(--transition);
}

.navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

.hero-shape {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 2;
    animation: pulse-shape 10s infinite alternate;
}

@keyframes pulse-shape {
    from { transform: scale(1); opacity: 0.2; }
    to { transform: scale(1.2); opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.glass-hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.hero-shape-2 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 2;
    animation: pulse-shape 8s infinite alternate-reverse;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(166, 45, 45, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    box-shadow: 0 10px 30px rgba(166, 45, 45, 0.3);
}

.hero-badge i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
}

/* Service Cards - Modernized */
.service-card {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    padding: 50px 35px;
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(166, 45, 45, 0.03) 0%, rgba(166, 45, 45, 0) 100%);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(166, 45, 45, 0.1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), transparent, var(--primary-color));
    z-index: -2;
    opacity: 0;
    transition: var(--transition);
    border-radius: 24px;
}

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

.service-card:hover::before {
    height: 100%;
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.service-icon {
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.5s ease;
    z-index: 2;
    position: relative;
}

.service-icon-bg {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 20px;
    transition: all 0.5s ease;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(-10deg) scale(1.1);
}

.service-card:hover .service-icon-bg {
    transform: translate(-15px, -15px) rotate(10deg);
    opacity: 0.2;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card.bento-big, .service-card.bento-wide {
    min-height: 280px;
}

@media (min-width: 992px) {
    .service-card.bento-big {
        background: linear-gradient(135deg, #ffffff 0%, #fffafa 100%);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

/* Contact Section */
.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px;
}

.footer-logo {
    height: 40px;
    /* filter: brightness(0) invert(1); */
    margin-bottom: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
}
