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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: #e0e0e0;
    border: 1px solid #404040;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #404040 0%, #2d2d2d 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid #404040;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #404040;
    color: #e0e0e0;
}

/* Section Subtitle */
.section-subtitle {
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #2a2a2a;
}

.top-bar {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 2rem;
}

.top-info i {
    margin-right: 0.5rem;
}

.top-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: opacity 0.3s ease;
}

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

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #888;
}

.btn-quote {
    background: #404040;
    color: #e0e0e0;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #555;
}

.btn-quote:hover {
    background: #555;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: none;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-slide.active {
    display: flex;
    align-items: center;
}

.hero-slide:nth-child(1) {
    background-image: url('https://images.pexels.com/photos/7688336/pexels-photo-7688336.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
}

.hero-slide:nth-child(2) {
    background-image: url('https://images.pexels.com/photos/3184306/pexels-photo-3184306.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
}

.hero-slide:nth-child(3) {
    background-image: url('https://images.pexels.com/photos/3183197/pexels-photo-3183197.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
}

.hero-content {
    color: white;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-content h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 80%;
    right: 15%;
    animation-delay: 1s;
}

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

/* About Section */
.about {
    padding: 6rem 0;
    background: #1a1a1a;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #2a2a2a;
    color: #e0e0e0;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #404040;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.experience-badge .text {
    font-size: 0.9rem;
}

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

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

.feature i {
    color: #888;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.contact-info span {
    color: #888;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #e0e0e0;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #121212;
}

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

.service-card {
    background: #1a1a1a;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #333;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2a2a2a 0%, #404040 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid #555;
}

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

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

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

.service-link {
    color: #888;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #e0e0e0;
}

/* CTA Section */
.cta-section {
    background: #1a1a1a;
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

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

/* Business Goals Section */
.business-goals {
    padding: 6rem 0;
    background: #121212;
}

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

.goals-features {
    margin: 2rem 0;
}

.goal-feature {
    margin-bottom: 2rem;
}

.goal-feature h4 {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.goals-image img {
    width: 100%;
    border-radius: 10px;
}

/* Counter Section */
.counter-section {
    background: #1a1a1a;
    padding: 4rem 0;
    color: #e0e0e0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.counter-item {
    padding: 1rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.counter-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    background: #121212;
}

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

.project-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.project-content span {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Features Highlight Section */
.features-highlight {
    padding: 4rem 0;
    background: #1a1a1a;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.features-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-highlight {
    padding: 2rem;
}

.feature-highlight i {
    font-size: 3rem;
    color: #888;
    margin-bottom: 1rem;
    display: block;
}

.feature-highlight h4 {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.feature-highlight p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: #121212;
}

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

.team-member {
    text-align: center;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.team-member h3 {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.team-member span {
    color: #888;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #1a1a1a;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: #121212;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.testimonial-author h4 {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #888;
}

/* Call to Action Info Section */
.cta-info {
    padding: 6rem 0;
    background: #121212;
    text-align: center;
}

.cta-info-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-info h2 {
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.cta-info p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #b0b0b0;
}

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

.cta-info-buttons .btn-primary,
.cta-info-buttons .btn-secondary {
    min-width: 200px;
}

/* Blog Section */
.blog {
    padding: 6rem 0;
    background: #1a1a1a;
}

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

.blog-card {
    background: #121212;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    margin-bottom: 1rem;
}

.blog-meta .category {
    background: #404040;
    color: #e0e0e0;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-right: 1rem;
}

.blog-meta .author {
    color: #888;
    font-size: 0.9rem;
}

.blog-card h3 {
    color: #e0e0e0;
    line-height: 1.4;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #0d0d0d;
    color: #e0e0e0;
}

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

.contact-info h3,
.contact-links h4,
.newsletter h4 {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: #888;
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.2rem;
}

.contact-item div span {
    display: block;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
}

.opening-hours {
    margin-top: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
}

.contact-links ul {
    list-style: none;
    padding: 0;
}

.contact-links li {
    margin-bottom: 0.5rem;
}

.contact-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: #888;
}

.newsletter p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: inherit;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
    border: none;
}

.newsletter small {
    color: #999;
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background: #222;
    padding: 3rem 0 1rem;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: #888;
    margin-right: 0.5rem;
    width: 16px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #888;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .menu-toggle {
        display: flex;
    }

            .nav-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #1a1a1a;
            flex-direction: column;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            padding: 1rem 0;
            border: 1px solid #333;
        }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0.5rem 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h4 {
        font-size: 1rem;
    }

    .about-content,
    .goals-content,
    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

            .features-highlight-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

    .top-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .top-info span {
        margin: 0 1rem;
    }

    .top-links a {
        margin: 0 0.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    section {
        padding: 4rem 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .features-highlight-grid {
        grid-template-columns: 1fr;
    }

    .team-grid,
    .services-grid,
    .projects-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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