/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Scheme Variables - Black and Orange Theme */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #333333;
    --accent-color: #ff6600;
    --accent-light: #ff8533;
    --accent-dark: #cc5200;
    --text-dark: #1a1a1a;
    --text-light: #b0b0b0;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-dark: #2a2a2a;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ff6600;
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    --gradient-accent: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 20px rgba(255, 102, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.text-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 700;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ff6600;
    margin: 3px 0;
    transition: 0.3s;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: white;
    padding-top: 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 20px;
    text-align: center;
}

.hero-logo {
    margin-bottom: 1rem;
}

.hero-text-logo {
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0;
}

.hero-shield-logo {
    max-width: 350px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hero-shield-logo:hover {
    transform: scale(1.03);
    animation: logoFloat 2s ease-in-out infinite;
}

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

/* About Section */
.about {
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
}

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

.feature i {
    color: var(--success-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-image {
    text-align: center;
    color: var(--accent-color);
    opacity: 0.3;
}

/* Reviews Section */
.reviews {
    background-color: #2a2a2a;
}

.reviews-container {
    margin-bottom: 3rem;
}

.loading-message {
    text-align: center;
    padding: 3rem;
    color: #c0c0c0;
}

.loading-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-card {
    background: #333333;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 102, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #e0e0e0;
}

.review-card:hover {
    transform: translateY(-8px) rotateY(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 102, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 1rem;
}

.review-rating {
    color: var(--warning-color);
}

.review-text {
    color: #c0c0c0;
    line-height: 1.6;
    font-style: italic;
}

.google-rating {
    text-align: center;
    padding: 2rem;
    background: #333333;
    border-radius: 15px;
    color: #e0e0e0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 102, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.stars {
    color: var(--warning-color);
    font-size: 1.5rem;
}

/* Services Section */
.services {
    background-color: #2a2a2a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #333333;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 102, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 102, 0, 0.4);
}

.service-card:active {
    transform: translateY(-12px) scale(1.01);
}

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

.service-icon i {
    font-size: 3rem;
    color: var(--accent-color);
}

/* Styled Wheel Icon */
.wheel-styled {
    position: relative;
    display: inline-block;
}

.wheel-styled i {
    font-size: 4rem;
    color: var(--accent-color);
    text-shadow: 
        0 0 10px rgba(255, 102, 0, 0.3),
        0 0 20px rgba(255, 102, 0, 0.2);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.wheel-styled:hover i {
    transform: rotate(180deg);
    text-shadow: 
        0 0 15px rgba(255, 102, 0, 0.5),
        0 0 30px rgba(255, 102, 0, 0.3);
}

.service-card h3 {
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-gallery {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-gallery::after {
    content: '→';
    position: absolute;
    right: 15px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.btn-gallery:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    padding-right: 2.5rem;
}

.btn-gallery:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.gallery-content {
    position: relative;
    background-color: #333333;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 102, 0, 0.2);
    color: #e0e0e0;
}

.gallery-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--accent-color);
}

.gallery-header h3 {
    margin: 0;
    font-size: 1.8rem;
}

.gallery-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    background-color: var(--accent-color);
    transform: rotate(90deg);
}

.gallery-carousel {
    padding: 2rem;
    max-height: calc(100% - 120px);
    overflow: hidden;
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-images {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carousel-slide img {
    max-width: 95%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-info {
    display: none;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--accent-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-color);
}

.gallery-item {
    background: #333333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
    color: #e0e0e0;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item-info {
    padding: 1rem;
}

.gallery-item-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.gallery-item-info p {
    color: #c0c0c0;
    font-size: 0.9rem;
}

.gallery-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    color: #c0c0c0;
}

.gallery-placeholder i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.gallery-placeholder h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.gallery-placeholder p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.gallery-preview {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    background: #333333;
    padding: 1.5rem;
    border-radius: 10px;
    color: #e0e0e0;
}

.gallery-preview h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.gallery-preview ul {
    list-style: none;
    padding: 0;
}

.gallery-preview li {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.gallery-preview li strong {
    color: var(--primary-color);
}

.gallery-preview li span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.gallery-upload-note {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin-top: 1rem;
    border: 2px dashed var(--accent-color);
}

.gallery-upload-note p {
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.image-modal-content {
    position: relative;
    margin: 2% auto;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.image-modal-close:hover {
    background: var(--accent-dark);
}

.image-modal-info {
    color: white;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
}

.image-modal-info h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.image-modal-info p {
    margin: 0;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background-color: #2a2a2a;
    border-top: 3px solid var(--accent-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #e0e0e0;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #333333;
    border-radius: 10px;
    color: #e0e0e0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 102, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.contact-details h4 {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #c0c0c0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#google-map iframe {
    border-radius: 15px;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #2a2a2a;
    padding: 4rem 0;
}

/* Contact Form Styles */
.contact-form {
    background: #333333;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 102, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    color: #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.contact-form h3 {
    color: #e0e0e0;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #555;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #4d4d4d;
    color: #e0e0e0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
    transform: translateY(-2px);
    animation: inputFocus 0.3s ease;
}

@keyframes inputFocus {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.02); }
    100% { transform: translateY(-2px) scale(1); }
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: rgba(56, 161, 105, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(56, 161, 105, 0.3);
}

.form-message.error {
    background-color: rgba(245, 101, 101, 0.1);
    color: #e53e3e;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

.inquiry-form .btn {
    margin-top: 1rem;
    align-self: center;
    min-width: 200px;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 4px solid var(--accent-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        margin-top: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

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

.fa-spin {
    animation: spin 1s linear infinite;
}

/* Smooth Animations */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}
