/* Global Styles */
:root {
    --primary-color: #28a745;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Section Titles */
.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    text-decoration: none;
    padding: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-container {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 2px;
}

.brand-phone {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.brand-phone i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

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

/* Responsive Logo */
@media (max-width: 576px) {
    .brand-title {
        font-size: 1rem;
    }
    
    .brand-phone {
        font-size: 0.8rem;
    }
    
    .logo-container svg {
        width: 35px;
        height: 35px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 250px 0 100px 0;
    background: url('assets/images/slider.png') no-repeat center center;
    background-size: cover;
    min-height: 600px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-weight: 500;
}

/* Blinking Text Animation */
@keyframes colorChange {
    0% { color: #ffffff; }
    25% { color: #28a745; }
    50% { color: #ffc107; }
    75% { color: #17a2b8; }
    100% { color: #ffffff; }
}

.hero-section .lead {
    animation: colorChange 4s infinite;
    font-weight: 500;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Service Cards */
.service-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-icon i {
    background: rgba(40, 167, 69, 0.1);
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    background: var(--primary-color);
    color: var(--white);
}

/* Gallery */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.gallery-item img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

/* Quality Section */
.quality-features {
    padding: 1rem 0;
}

.quality-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quality-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quality-icon {
    background: rgba(40, 167, 69, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.quality-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.quality-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 600;
}

.quality-text p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Quality Visual */
.quality-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-circle {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.circle-outer {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
}

.circle-middle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(40, 167, 69, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 15s linear infinite reverse;
}

.circle-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(40, 167, 69, 0.3);
}

.circle-inner i {
    font-size: 2.5rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.quality-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.badge-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.badge-item.top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.badge-item.right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.badge-item.bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.badge-item.left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 3s;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    font-weight: 500;
    padding: 1.2rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(40, 167, 69, 0.1);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(40, 167, 69, 0.1);
}

/* Footer */
.footer {
    background-color: #1a1a1a !important;
}

.social-links a {
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

.cursor-pointer {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cursor-pointer:hover {
    transform: scale(1.05);
}

#imageModal .modal-content {
    background: transparent;
    border: none;
}

#imageModal .btn-close {
    background-color: white;
    opacity: 0.8;
    border-radius: 50%;
    padding: 8px;
    margin: 10px;
    z-index: 1;
}

#imageModal .modal-body {
    padding: 0;
}

#modalImage {
    border-radius: 8px;
    max-height: 90vh;
    object-fit: contain;
} 