/* Custom CSS for GTA Clicks Photography Website */

/* CSS Variables */
:root {
    --primary-color: #dd4554;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-muted: #7f8c8d;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #dd4554 0%, #e74c3c 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.2);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition-smooth);
    z-index: 1000;
    /* Remove default background */
    background: transparent !important;
}

/* Glass navbar container */
.navbar .container {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.8rem 1.5rem;
    margin: 1rem auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    /* Add subtle gradient overlay */
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    max-width: calc(100% - 2rem);
}

/* Scrolled state - enhance the container glass effect */
.navbar.scrolled .container {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* Enhanced gradient overlay */
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* Ensure navbar itself stays transparent when scrolled */
.navbar.scrolled {
    background: transparent !important;
    background-color: transparent !important;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light) !important;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

/* Navbar logo styles */
.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: var(--transition-smooth);
    /* Add subtle drop shadow for better visibility */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    /* Ensure logo is crisp on high-DPI displays */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.navbar-brand:hover {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Brand text styles removed - now using logo image */

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: var(--transition-smooth);
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    /* Add subtle inner glow */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Change text color to black when scrolled */
.navbar.scrolled .navbar-nav .nav-link {
    color: #000000 !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 25px rgba(221, 69, 84, 0.2);
    transform: translateY(-2px);
}

/* Hover and active states when scrolled - keep black text */
.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
    color: #000000 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Special glass effect for Book Session button */
.navbar-nav .nav-link.btn.btn-primary {
    background: rgba(221, 69, 84, 0.2) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(221, 69, 84, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 6px 20px rgba(221, 69, 84, 0.25);
    color: var(--text-light) !important;
    font-weight: 600;
    /* Add subtle gradient overlay */
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

/* Book Session button when scrolled - black text */
.navbar.scrolled .navbar-nav .nav-link.btn.btn-primary {
    color: #000000 !important;
}

.navbar-nav .nav-link.btn.btn-primary:hover {
    background: rgba(221, 69, 84, 0.3) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(221, 69, 84, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 12px 30px rgba(221, 69, 84, 0.35);
    transform: translateY(-3px);
    color: white !important;
    /* Enhanced gradient overlay on hover */
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* Book Session button hover when scrolled - keep black text */
.navbar.scrolled .navbar-nav .nav-link.btn.btn-primary:hover {
    color: #000000 !important;
}

/* Remove the ::after underline for the Book Session button */
.navbar-nav .nav-link.btn.btn-primary::after {
    display: none;
}

/* Enhanced glass effect support for different browsers */
@supports (backdrop-filter: blur(10px)) {
    .navbar .container {
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    .navbar.scrolled .container {
        background: rgba(255, 255, 255, 0.15) !important;
    }
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .navbar .container {
        background: rgba(255, 255, 255, 0.95) !important;
    }
    
    .navbar.scrolled .container {
        background: rgba(255, 255, 255, 0.98) !important;
    }
}

/* Add subtle animation to the glass effect */
.navbar .container {
    animation: glassShimmer 3s ease-in-out infinite alternate;
}

@keyframes glassShimmer {
    0% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }
}

/* Mobile navbar glass effect */
@media (max-width: 991.98px) {
    .navbar .container {
        margin: 0.5rem auto;
        max-width: calc(100% - 1rem);
        border-radius: 15px;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 12px;
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        text-align: center;
    }
}

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

.carousel {
    height: 100%;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 62, 80, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(221, 69, 84, 0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem 0;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
    transform: translateX(-50px);
}

.hero-buttons {
    animation: slideInLeft 1s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
    transform: translateX(-50px);
}

/* Custom Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(221, 69, 84, 0.4);
    background: linear-gradient(135deg, #e74c3c 0%, #dd4554 100%);
}

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

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 3rem;
    right: 2rem;
    left: auto;
    width: auto;
    margin: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.carousel-indicators button {
    width: 40px;
    height: 6px;
    border-radius: 3px;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.carousel-indicators button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scaleX(1.1);
}

.carousel-indicators button:hover::before {
    left: 100%;
}

.carousel-indicators button.active {
    background: linear-gradient(90deg, var(--primary-color), #ff6b7a);
    box-shadow: 0 0 15px rgba(221, 69, 84, 0.5);
    transform: scaleX(1.3);
}

.carousel-indicators button.active::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    left: 100%;
    animation: shimmer 2s infinite;
}

/* Responsive Design for Carousel Indicators */
@media (max-width: 768px) {
    .carousel-indicators {
        bottom: 2rem;
        right: 1rem;
        gap: 8px;
    }
    
    .carousel-indicators button {
        width: 30px;
        height: 5px;
    }
    
    .carousel-indicators button.active {
        transform: scaleX(1.2);
    }
}

@media (max-width: 480px) {
    .carousel-indicators {
        bottom: 1.5rem;
        right: 0.5rem;
        gap: 6px;
    }
    
    .carousel-indicators button {
        width: 25px;
        height: 4px;
    }
}

/* Alternative Horizontal Carousel Indicators */
.carousel-indicators.horizontal {
    flex-direction: row;
    bottom: 2rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    gap: 8px;
}

.carousel-indicators.horizontal button {
    width: 50px;
    height: 4px;
    border-radius: 2px;
}

.carousel-indicators.horizontal button.active {
    transform: scaleX(1.5);
}

/* Modern Dot Indicators Alternative */
.carousel-indicators.dots {
    flex-direction: row;
    bottom: 2rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    gap: 10px;
}

.carousel-indicators.dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators.dots button:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.carousel-indicators.dots button.active {
    background-color: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(221, 69, 84, 0.6);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    opacity: 0;
    z-index: 3;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 2rem;
}

.carousel-control-next {
    right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(221, 69, 84, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.scroll-arrow:hover {
    background: rgba(221, 69, 84, 0.8);
    transform: scale(1.1);
}

/* Animations */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 1rem;
    }
    
    .carousel-control-next {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Tablet container adjustments */
    .navbar .container {
        margin: 0.75rem auto;
        max-width: calc(100% - 1.5rem);
        border-radius: 18px;
    }
    
    /* Tablet logo adjustments */
    .navbar-logo {
        height: 36px;
        max-width: 130px;
    }
    
    /* Optimize navbar glass effects for tablets */
    .navbar-nav .nav-link {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 3px 12px rgba(0, 0, 0, 0.08);
    }
    
    .navbar-nav .nav-link.btn.btn-primary {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    /* Tablet scrolled state - black text */
    .navbar.scrolled .navbar-nav .nav-link {
        color: #000000 !important;
    }
    
    .navbar.scrolled .navbar-nav .nav-link.btn.btn-primary {
        color: #000000 !important;
    }
    
    .carousel-indicators {
        bottom: 1rem;
        right: 1rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 1.5rem 0;
        margin-bottom: 3rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
        padding: 0.3rem 0.8rem;
    }
    
    .navbar-logo {
        height: 32px;
        max-width: 120px;
    }
    
    /* Mobile container adjustments */
    .navbar .container {
        margin: 0.25rem auto;
        max-width: calc(100% - 0.5rem);
        border-radius: 12px;
        padding: 0.5rem 1rem;
    }
    
    /* Optimize glass effects for mobile */
    .navbar-nav .nav-link {
        margin: 0.2rem;
        padding: 0.4rem 0.8rem !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .navbar-nav .nav-link.btn.btn-primary {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 4px 15px rgba(221, 69, 84, 0.2);
    }
    
    /* Mobile scrolled state - black text */
    .navbar.scrolled .navbar-nav .nav-link {
        color: #000000 !important;
    }
    
    .navbar.scrolled .navbar-nav .nav-link.btn.btn-primary {
        color: #000000 !important;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.hero-slide {
    transition: opacity 0.5s ease-in-out;
}

/* Accessibility improvements */
.carousel-control-prev:focus,
.carousel-control-next:focus,
.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Performance optimizations */
.hero-slide {
    will-change: transform;
    backface-visibility: hidden;
}

.carousel-item {
    backface-visibility: hidden;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-header {
    text-align: left !important;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Skills Section */
.skills-section {
    margin-top: 2rem;
}

.skills-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.skill-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease-in-out;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* About CTA */
.about-cta {
    margin-top: 2rem;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* About Image */
.about-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.image-wrapper {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.image-wrapper:hover .main-image {
    transform: scale(1.05);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.floating-element i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.element-1 {
    top: 20%;
    right: -10px;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    left: -20px;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    right: 20px;
    animation-delay: 2s;
}

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

/* Decorative Shapes */
.decorative-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: 1;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation: rotate 20s linear infinite;
}

.shape-2 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 15%;
    animation: rotate 15s linear infinite reverse;
}

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

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    z-index: 15;
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-image {
        min-height: 400px;
        margin-bottom: 2rem;
    }
    
    .floating-element {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .element-1 {
        top: 15%;
        right: 10px;
    }
    
    .element-2 {
        top: 45%;
        left: 10px;
    }
    
    .element-3 {
        bottom: 25%;
        right: 15px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -15px;
        left: -15px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text .lead {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .about-image {
        min-height: 300px;
    }
    
    .floating-element {
        display: none; /* Hide on mobile for cleaner look */
    }
    
    .about-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: -10px;
        left: -10px;
    }
    
    .badge-number {
        font-size: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.6rem;
    }
}

/* Portfolio Gallery Section */
.portfolio-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
    text-align: left !important;
}

/* Portfolio hover behavior overrides: remove overlay and lift, keep image zoom */
.portfolio-section .image-overlay {
    display: none !important;
    pointer-events: none !important;
}

.portfolio-section .gallery-card:hover {
    transform: none !important;
    box-shadow: var(--shadow-soft) !important;
}

@media (max-width: 768px) {
    .portfolio-section .image-overlay {
        display: none !important;
    }
}

/* Home portfolio image animations */
.portfolio-section .gallery-card {
    position: relative;
    overflow: hidden;
}

.portfolio-section .gallery-card .gallery-image {
    transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
                filter 300ms ease;
    will-change: transform;
}

.portfolio-section .gallery-card:hover .gallery-image {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.03);
}

/* Subtle shine sweep on hover */
.portfolio-section .gallery-card::after {
    content: '';
    position: absolute;
    top: -120%;
    left: -80%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
    transform: rotate(25deg);
    opacity: 0;
    pointer-events: none;
}

.portfolio-section .gallery-card:hover::after {
    animation: shineSweep 800ms ease both;
}

@keyframes shineSweep {
    0% { top: -120%; left: -80%; opacity: 0; }
    50% { opacity: 0.6; }
    100% { top: 120%; left: 80%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .portfolio-section .gallery-card .gallery-image,
    .portfolio-section .gallery-card:hover .gallery-image,
    .portfolio-section .gallery-card::after {
        transition: none !important;
        animation: none !important;
    }
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(221, 69, 84, 0.3);
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Gallery Grid - Masonry Layout */
.gallery-grid {
    column-count: 3;
    column-gap: 20px;
    position: relative;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    background: white;
    width: 100%;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.gallery-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(221, 69, 84, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(2px);
}

.gallery-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.image-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.image-category {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Overlay Buttons */
.overlay-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-view,
.btn-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-view:hover,
.btn-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Load More Button */
.load-more-btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
    z-index: -1;
}

.load-more-btn:hover::before {
    left: 0;
}

.load-more-btn:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Image Modal */
.modal-content {
    background: rgba(0, 0, 0, 0.9) !important;
    border-radius: 20px;
    overflow: hidden;
}

.modal-header {
    background: transparent;
    padding: 1.5rem;
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-image {
    border-radius: 15px;
    max-height: 70vh;
    object-fit: contain;
}

.modal-info {
    padding: 1rem 1.5rem;
    text-align: center;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Gallery Animations */
@keyframes galleryItemIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-item.animate-in {
    animation: galleryItemIn 0.6s ease-out forwards;
}

/* Masonry-like effect for different image heights */
.gallery-item:nth-child(6n+1) .gallery-image {
    aspect-ratio: 3/4;
    object-fit: cover;
}

.gallery-item:nth-child(6n+2) .gallery-image {
    aspect-ratio: 4/3;
    object-fit: cover;
}

.gallery-item:nth-child(6n+3) .gallery-image {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.gallery-item:nth-child(6n+4) .gallery-image {
    aspect-ratio: 4/5;
    object-fit: cover;
}

.gallery-item:nth-child(6n+5) .gallery-image {
    aspect-ratio: 16/9;
    object-fit: cover;
}

.gallery-item:nth-child(6n+6) .gallery-image {
    aspect-ratio: 5/4;
    object-fit: cover;
}

/* Responsive Design for Gallery */
@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 15px;
    }
    
    .gallery-item {
        margin-bottom: 15px;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .image-title {
        font-size: 1.1rem;
    }
    
    .image-category {
        font-size: 0.8rem;
    }
    
    .overlay-buttons {
        gap: 0.8rem;
    }
    
    .btn-view,
    .btn-link {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 12px;
    }
    
    .gallery-item {
        margin-bottom: 12px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .filter-btn {
        min-width: 150px;
    }
    
    .gallery-item:nth-child(n) .gallery-image {
        aspect-ratio: auto;
        height: auto;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .modal-image {
        max-height: 60vh;
    }
    
    .image-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            transparent 100%
        );
    }
    
    .overlay-content {
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        transform: translateY(0);
        text-align: left;
    }
    
    .overlay-buttons {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        column-count: 1;
        column-gap: 0;
        margin: 0;
    }
    
    .gallery-item {
        margin-bottom: 20px;
        padding: 0;
    }
    
    .filter-buttons {
        padding: 0 1rem;
    }
    
    .filter-btn {
        min-width: 120px;
        padding: 0.5rem 1rem;
    }
    
    .load-more-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-image {
        max-height: 50vh;
    }
}

/* Loading Animation */
.gallery-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(221, 69, 84, 0.3);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Intersection Observer Animation */
.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.gallery-item:nth-child(1) { transition-delay: 0.1s; }
.gallery-item:nth-child(2) { transition-delay: 0.2s; }
.gallery-item:nth-child(3) { transition-delay: 0.3s; }
.gallery-item:nth-child(4) { transition-delay: 0.1s; }
.gallery-item:nth-child(5) { transition-delay: 0.2s; }
.gallery-item:nth-child(6) { transition-delay: 0.3s; }
.gallery-item:nth-child(7) { transition-delay: 0.1s; }
.gallery-item:nth-child(8) { transition-delay: 0.2s; }
.gallery-item:nth-child(9) { transition-delay: 0.3s; }

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23dd4554" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23services-pattern)"/></svg>');
    pointer-events: none;
}

/* Services List Layout */
.services-list {
    margin-top: 3rem;
}

.service-item {
    margin-bottom: 5rem;
    position: relative;
    background: #f8f9fa;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(221, 69, 84, 0.4);
    z-index: 3;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Service Image */
.service-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

/* Service Content */
.service-content {
    padding: 3rem;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

/* Service Item Row Alignment */
.service-item .row {
    align-items: stretch;
}

.service-item .col-lg-6 {
    display: flex;
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(221, 69, 84, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Service Content */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.service-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Service Features */
.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.feature-item span {
    line-height: 1.5;
}

/* Service Price */
.service-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

/* Service Button */
.service-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    background: var(--gradient-primary) !important;
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(221, 69, 84, 0.3);
    font-size: 0.9rem;
    display: inline-block;
    text-decoration: none;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Services Info Section */
.services-info {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    margin-top: 3rem;
}

.info-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.info-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.info-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.info-image img:hover {
    transform: scale(1.02);
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 2;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    margin: 0.5rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.cta-buttons .btn-outline-primary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design for Services */
@media (max-width: 992px) {
    .service-item {
        margin-bottom: 3rem;
    }
    
    .service-content {
        padding: 2rem;
        min-height: 400px;
    }
    
    .service-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .service-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .services-info {
        padding: 2rem;
    }
    
    .info-title {
        font-size: 1.8rem;
    }
    
    .info-features {
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-content {
        padding: 1.5rem;
        text-align: center;
        min-height: 300px;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .feature-item {
        justify-content: center;
        margin-bottom: 0.75rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .service-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* On mobile, we need to break the flex behavior for stacking */
    .service-item .col-lg-6 {
        display: block;
    }
    
    .service-image {
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .services-info {
        padding: 1.5rem;
        text-align: center;
    }
    
    .info-features {
        align-items: center;
    }
    
    .services-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .service-content {
        padding: 1rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .services-info {
        padding: 1rem;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
    
    .services-cta {
        padding: 1.5rem 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

/* ==========================================
   REVIEWS SECTION STYLES
   ========================================== */

.reviews-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Reviews Summary */
.reviews-summary {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.reviews-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

/* Google Rating */
.google-rating {
    text-align: center;
}

.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.google-icon {
    width: 24px;
    height: 24px;
}

.google-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #4285f4;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars i {
    color: #ffc107;
    font-size: 1.5rem;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.review-count {
    color: #6c757d;
    font-size: 1rem;
}

/* Rating Breakdown */
.rating-breakdown {
    padding-left: 2rem;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.star-label {
    min-width: 60px;
    font-size: 0.9rem;
    color: #495057;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #ffb300);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.rating-count {
    min-width: 30px;
    text-align: right;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    flex: 1;
}

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

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.review-stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 0.25rem;
}

.review-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-stars .far {
    color: #dee2e6;
}

.review-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.google-badge {
    flex-shrink: 0;
}

.badge-icon {
    width: 20px;
    height: 20px;
}

/* Review Content */
.review-content {
    position: relative;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    margin: 0;
    position: relative;
}

.review-text::before {
    content: none;
}

/* Reviews CTA */
.reviews-cta {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reviews-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.05;
}

.reviews-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reviews-cta .cta-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.reviews-cta .btn {
    min-width: 200px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.reviews-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.reviews-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.reviews-cta .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.reviews-cta .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

/* Responsive Design for Reviews */
@media (max-width: 992px) {
    .reviews-summary {
        padding: 2rem;
    }
    
    .rating-breakdown {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .reviews-cta .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .reviews-summary {
        padding: 1.5rem;
    }
    
    .google-logo {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .rating-display {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .rating-score {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .reviewer-info {
        gap: 0.75rem;
    }
    
    .avatar-img {
        width: 40px;
        height: 40px;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .reviews-cta {
        padding: 2rem 1rem;
    }
    
    .reviews-cta .cta-title {
        font-size: 1.75rem;
    }
    
    .reviews-cta .cta-description {
        font-size: 1.1rem;
    }
    
    .reviews-cta .cta-buttons {
        gap: 0.75rem;
    }
    
    .reviews-cta .btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .reviews-summary {
        padding: 1rem;
    }
    
    .rating-row {
        gap: 0.5rem;
    }
    
    .star-label {
        min-width: 50px;
        font-size: 0.8rem;
    }
    
    .rating-count {
        min-width: 25px;
        font-size: 0.8rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .reviewer-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .reviewer-details {
        text-align: center;
    }
    
    .review-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .reviews-cta .cta-title {
        font-size: 1.5rem;
    }
    
    .reviews-cta .cta-description {
        font-size: 1rem;
    }
}

/* Animation for rating bars */
@keyframes fillBar {
    from {
        width: 0;
    }
    to {
        width: var(--target-width);
    }
}

.rating-fill {
    animation: fillBar 1s ease-out 0.5s both;
}

/* Hover effects for review cards */
.review-card:hover .avatar-img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.review-card:hover .review-stars i {
    animation: starGlow 0.6s ease-in-out;
}

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

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="%23dd4554" opacity="0.04"/><circle cx="15" cy="15" r="0.8" fill="%23e74c3c" opacity="0.03"/><circle cx="45" cy="45" r="0.8" fill="%23dd4554" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    pointer-events: none;
}

/* Contact Info */
.contact-info {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-info-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.contact-info-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Details */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-content {
    flex: 1;
}

.contact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-value {
    margin-bottom: 0.25rem;
}

.contact-value a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.contact-value a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-medium);
    color: white;
}

/* Business Hours */
.business-hours {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(221, 69, 84, 0.1);
}

.hours-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 14px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: var(--text-dark);
}

.time {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.form-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(221, 69, 84, 0.1);
    background-color: white;
}



/* Select Styling */
select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Textarea */
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox */
.form-check {
    margin-bottom: 1.5rem;
}

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.2rem;
    border: 2px solid #e9ecef;
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-muted);
    margin-left: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Submit Button */
.contact-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-submit-btn .btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Success Message */
.alert-success {
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.success-content {
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* Map Section */
.map-section {
    margin-top: 3rem;
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.map-description {
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-wrapper {
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Map Overlay */
.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    max-width: 280px;
    border: 1px solid rgba(221, 69, 84, 0.1);
}

.overlay-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.overlay-address {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.overlay-actions .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.contact-cta .cta-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 2;
}

.contact-cta .cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.contact-cta .cta-buttons {
    position: relative;
    z-index: 2;
}

.contact-cta .cta-buttons .btn {
    margin: 0.5rem;
}

.contact-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.contact-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.contact-cta .btn-outline-primary {
    border-color: white;
    color: white;
}

.contact-cta .btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Form Animation Effects */
.form-group {
    position: relative;
    overflow: hidden;
}

.form-group::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.form-group:focus-within::before {
    width: 100%;
}

/* Responsive Design for Contact */
@media (max-width: 992px) {
    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-title,
    .form-title {
        font-size: 1.6rem;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 1rem;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .contact-info,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        align-items: center;
        justify-content: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .contact-content {
        text-align: center;
        width: 100%;
    }
    
    .contact-label {
        text-align: center;
    }
    
    .contact-value {
        text-align: center;
    }
    
    .contact-note {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .business-hours {
        padding: 1rem;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta .cta-title {
        font-size: 1.8rem;
    }
    
    .contact-cta .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-cta .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-info,
    .contact-form-wrapper {
        padding: 1rem;
    }
    
    .contact-info-title,
    .form-title {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .contact-info-description {
        text-align: center;
    }
    
    .contact-item {
        align-items: center;
        justify-content: center;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    .contact-content {
        text-align: center;
        width: 100%;
    }
    
    .contact-label {
        text-align: center;
    }
    
    .contact-value {
        text-align: center;
    }
    
    .contact-note {
        text-align: center;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-cta {
        padding: 1.5rem 1rem;
    }
    
    .contact-cta .cta-title {
        font-size: 1.5rem;
    }
    
    .contact-cta .cta-description {
        font-size: 1rem;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    .map-overlay {
        padding: 1rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 2rem 0 1rem 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23dd4554" opacity="0.08"/><circle cx="12.5" cy="12.5" r="0.5" fill="%23e74c3c" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 1rem;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
    font-style: italic;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.footer-social .social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.footer-social .social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(221, 69, 84, 0.3);
    border-color: transparent;
}

/* Footer Divider */
.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 1.5rem 0 1rem 0;
}

/* Footer Copyright */
.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Service Cards Styles */
.service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #007bff;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2);
}

.service-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.service-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(0, 86, 179, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #007bff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-card-content {
    padding: 25px;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.service-card-price {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.service-card-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-features {
    margin-bottom: 25px;
}

.service-card-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.service-card-features .feature-item i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1rem;
}

.service-card-features .feature-item span {
    color: #495057;
    font-weight: 500;
}

.service-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.service-card-actions .btn {
    flex: 1;
    min-width: 120px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.why-choose-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-choose-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.feature-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.why-choose-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-card-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-card-price {
        align-self: flex-start;
    }
    
    .service-card-actions {
        flex-direction: column;
    }
    
    .why-choose-section {
        padding: 30px 20px;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-features .feature-item {
        gap: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem 0;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
    
    .footer-social .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}