/* Service Details Page Styles */

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    z-index: 1;
}

/* Glass Effect Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(217, 164, 68, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(217, 164, 68, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Feature Cards */
.feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto;
}

.feature-icon {
    background: rgba(217, 164, 68, 0.1);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card:hover .feature-icon {
    background: #d9a444;
    transform: scale(1.1) rotate(10deg);
}

.feature-card:hover .feature-icon i {
    color: white !important;
    transform: rotate(-10deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Process Steps */
.process-step {
    position: relative;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-circle {
    width: 120px;
    height: 120px;
    background: rgba(217, 164, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-circle {
    transform: scale(1.1);
    background: rgba(217, 164, 68, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #d9a444, #e2b76b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'din-bold', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

/* Image Effects */
.image-grid img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.image-grid img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Buttons */
.contact-btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.contact-btn:hover::before {
    transform: scaleX(1);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #d9a444, transparent);
    border-radius: 2px;
}

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

.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 164, 68, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(217, 164, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(217, 164, 68, 0);
    }
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Enhanced Scroll Bar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #d9a444, #e2b76b);
    border-radius: 6px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #c69133, #d9a444);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .glass-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .feature-card {
        background: rgba(255, 255, 255, 0.05);
    }
    
    ::-webkit-scrollbar-track {
        background: #2d2d2d;
    }
    
    ::-webkit-scrollbar-thumb {
        border-color: #2d2d2d;
    }
}

/* Feature Rows */
.feature-row {
    position: relative;
    padding: 2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-row:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    position: relative;
}

.feature-icon-new {
    width: 80px;
    height: 80px;
    background: rgba(217, 164, 68, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-row:hover .feature-icon-new {
    background: #d9a444;
    transform: rotate(-10deg);
}

.feature-row:hover .feature-icon-new i {
    color: white !important;
    transform: rotate(10deg);
}

.feature-image {
    position: relative;
}

.feature-image img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-content ul li {
    transition: all 0.3s ease;
}

.feature-content ul li:hover {
    transform: translateX(10px);
    color: #d9a444;
}

.feature-content ul li i {
    transition: all 0.3s ease;
}

.feature-content ul li:hover i {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .feature-row {
        padding: 1rem 0;
    }
    
    .feature-image {
        margin-bottom: 2rem;
    }
}

/* Contact Form Styles */
.contact-form input,
.contact-form textarea {
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d9a444;
    box-shadow: 0 0 0 4px rgba(217, 164, 68, 0.1);
}

.contact-info-item {
    transition: all 0.3s ease;
}

.contact-info-item:hover .icon-circle {
    transform: scale(1.1);
    background-color: rgba(217, 164, 68, 0.2);
}

.contact-info-item:hover a {
    color: #d9a444;
}

.icon-circle {
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .contact-form input,
    .contact-form textarea {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #d9a444;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .contact-form label {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .contact-info-item {
        color: rgba(255, 255, 255, 0.8);
    }
} 