/* 
========================
    Golden Paper Printing Company
    Modern and elegant website with Arabic support
========================
*/

/* Global Variables */
:root {
    --gold-color: #d4af37;
    --gold-hover: #c9a431;
    --dark-color: #222;
    --dark-secondary: #333;
    --light-color: #f8f8f8;
    --gray-color: #f2f2f2;
    --text-color: #333;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--gold-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--gold-color);
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
}

section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--gold-color);
    color: var(--dark-color);
    border: 2px solid var(--gold-color);
}

.primary-btn:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
}

.secondary-btn {
    background-color: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
}

.secondary-btn:hover {
    background-color: var(--gold-color);
    color: var(--dark-color);
}

/* Header */
header {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--gold-color);
}

.logo p {
    font-size: 0.9rem;
    color: var(--light-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--gold-color);
    bottom: 0;
    right: 0;
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--light-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: var(--dark-color);
    color: var(--light-color);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--gold-color);
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

/* Featured Services Section */
.featured-services {
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--gold-color);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.view-all-services {
    text-align: center;
    margin-top: 3rem;
}

/* About Us Section */
.about-us {
    background-color: var(--gray-color);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    text-align: right;
}

.about-text h2::after {
    right: 0;
    transform: none;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-location {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    color: var(--dark-color);
}

.about-location i {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-left: 1rem;
}

.image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.2);
    z-index: 1;
}

/* Gallery Preview Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.gallery-item img {
    transition: var(--transition);
    aspect-ratio: 1/1;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.view-more-gallery {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Preview Section */
.contact-preview {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.contact-preview .section-title {
    color: var(--light-color);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-left: 0.5rem;
}

.contact-buttons {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
footer {
    background-color: var(--dark-secondary);
    color: var(--light-color);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--gold-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--gold-color);
    bottom: -5px;
    right: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold-color);
    padding-right: 5px;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-contact p i,
.footer-contact a i {
    margin-left: 0.5rem;
    color: var(--gold-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--gold-color);
    color: var(--dark-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    nav ul {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--dark-color);
        width: 100%;
        flex-direction: column;
        padding: 2rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }
    
    nav.active ul {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    nav ul li {
        margin: 1rem 0;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Banner */
.page-banner {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold-color);
}

/* Services Page Styles */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-intro h2 {
    margin-bottom: 1.5rem;
}

.services-list {
    display: grid;
    gap: 3rem;
}

.service-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item .service-icon {
    margin: 0;
}

.service-details h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.service-details h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--gold-color);
    bottom: -5px;
    right: 0;
}

.service-details p {
    margin-bottom: 1.5rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-features li {
    position: relative;
    padding-right: 1.5rem;
}

.service-features li::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--gold-color);
    border-radius: 50%;
    right: 0;
    top: 8px;
}

/* CTA Section */
.cta-section {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-details h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .service-features {
        text-align: right;
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Gallery Page Styles */
.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--gold-color);
    color: var(--dark-color);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Tajawal', sans-serif;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--gold-color);
    color: var(--dark-color);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    height: 300px;
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}

.gallery-item.show {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-info {
    color: white;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gold-color);
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* LightGallery Customization */
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.9);
}

.lg-toolbar .lg-icon,
.lg-actions .lg-next, 
.lg-actions .lg-prev {
    background-color: var(--gold-color);
    color: var(--dark-color);
}

.lg-toolbar .lg-icon:hover,
.lg-actions .lg-next:hover, 
.lg-actions .lg-prev:hover {
    background-color: var(--gold-hover);
}

.lg-outer .lg-thumb-item.active, 
.lg-outer .lg-thumb-item:hover {
    border-color: var(--gold-color);
}

/* Media Queries for Gallery */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Contact Page Styles */
.contact-section {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.contact-form-wrapper h2::after,
.contact-info-wrapper h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--gold-color);
    bottom: -10px;
    right: 0;
}

.contact-form-wrapper p {
    margin-bottom: 2rem;
    color: #666;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Tajawal', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b30;
}

.submit-btn {
    justify-self: start;
    margin-top: 1rem;
    width: 100%;
}

.success-message {
    background-color: #4cd964;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Contact Info Styles */
.contact-info-list {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.contact-text p,
.contact-text a {
    color: #666;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--gold-color);
}

.social-contact h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.social-contact .social-icons {
    display: flex;
    gap: 1rem;
}

.social-contact .social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--gold-color);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-contact .social-icons a:hover {
    background-color: var(--dark-color);
    color: var(--gold-color);
    transform: translateY(-5px);
}

/* Map Section */
.map-section {
    padding: 0 0 5rem;
}

.map-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Shop Page Styles */
.shop-categories {
    padding: 5rem 0 3rem;
}

.categories-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-img {
    height: 200px;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.category-link {
    color: var(--gold-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.category-link:hover {
    padding-right: 5px;
}

/* Product Section */
.product-section {
    padding: 4rem 0;
    scroll-margin-top: 100px;
}

.product-section:nth-child(odd) {
    background-color: var(--gray-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--gold-color);
    color: var(--dark-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.product-info p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: var(--gold-color);
    font-weight: 700;
}

/* Custom Order CTA */
.custom-order-cta {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 5rem 0;
    text-align: center;
}

.custom-order-cta h2 {
    color: var(--gold-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.custom-order-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .product-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .custom-order-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Quick Nav */
.services-quick-nav {
    background-color: var(--light-color);
    padding: 1rem 0;
    position: sticky;
    top: 60px;
    z-index: 90;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.services-nav-wrapper {
    overflow-x: auto;
    padding: 0.5rem 0;
}

.services-nav {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-width: max-content;
}

.services-nav li {
    list-style: none;
}

.services-nav .nav-link {
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-nav .nav-link i {
    color: var(--primary-color);
}

.services-nav .nav-link:hover,
.services-nav .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.services-nav .nav-link:hover i,
.services-nav .nav-link.active i {
    color: white;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-header {
    background-color: var(--light-color);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content p {
    margin-bottom: 1.2rem;
    color: var(--text-color);
}

.service-btn {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-quick-nav {
        top: 57px;
    }
}

@media (max-width: 576px) {
    .services-nav {
        gap: 0.5rem;
    }
    
    .services-nav .nav-link {
        padding: 0.4rem 0.7rem;
        font-size: 0.9rem;
    }
} 