/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
}

/* Navigation styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 80px; /* Fixed height */
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.nav-links a {
    color: #2F3437;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00ff00;
}

/* CTA button styles */
.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #00ff00;
    color: black;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.cta-button:hover {
    background-color: #00cc00;
}

/* Hero section styles */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0 5%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.hero p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    font-weight: 400;
}

/* Services section styles */
.services {
    padding: 5rem 5%;
    background-color: white;
}

.services h2 {
    text-align: center;
    color: #2F3437;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: none; /* Remove card transition */
}

.service-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background-color: #e0e0e0;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

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

.service-card h3 {
    color: #2F3437;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: none; /* Remove text transition */
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 400;
    transition: none; /* Remove text transition */
    margin: 0; /* Remove margins */
    border: none; /* Remove borders */
}

/* Remove service card from hover effects */
.service-card:hover {
    transform: none;
    box-shadow: none;
    z-index: auto;
}

.services-cta {
    text-align: center;
}

/* Work showcase section styles */
.work-showcase {
    padding: 5rem 5%;
    background-color: #f8f8f8;
    text-align: center;
}

.work-showcase h2 {
    color: #2F3437;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.work-image-placeholder {
    aspect-ratio: 1;
    width: 100%;
    background-color: #e0e0e0;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.work-image-placeholder:hover {
    transform: scale(1.05);
}

.work-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Contact section styles */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: white;
}

.contact-content {
    padding: 5rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.contact-content h2 {
    color: #2F3437;
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.contact-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-color: #f0f0f0;
}

/* Footer styles */
.footer {
    background-color: #000;
    color: white;
    padding: 4rem 5%;
}

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

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: white;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.footer-section a:hover {
    text-decoration: underline;
}

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

.newsletter-form input {
    padding: 0.8rem;
    border: none;
    background-color: white;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    border-radius: 8px;
}

.newsletter-form button {
    padding: 0.8rem;
    border: none;
    background-color: white;
    color: black;
    cursor: pointer;
    font-weight: 600;
    width: fit-content;
    min-width: 100px;
    font-family: 'Outfit', sans-serif;
    border-radius: 8px;
}

.newsletter-form button:hover {
    background-color: #f0f0f0;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: #00ff00;
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 1.5px 6px rgba(0,255,0,0.08);
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-trigger {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Dropdown arrow rotation animation */
.dropdown-arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    margin-left: 0.5rem;
}

.dropdown:hover .dropdown-arrow,
.dropdown:focus-within .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown flipping animation */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) rotateX(-90deg);
    background-color: white;
    min-width: 180px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 12px;
    margin-top: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1),
                transform 0.5s cubic-bezier(0.4,0,0.2,1),
                visibility 0.4s;
    padding: 0.5rem 0;
    will-change: transform, opacity;
    perspective: 600px;
    z-index: 1001;
}
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) rotateX(0deg);
}

.dropdown-content a {
    color: #2F3437 !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.dropdown-content a:hover {
    background-color: rgba(0, 255, 0, 0.05);
    color: #00ff00 !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .navbar {
        background-color: white;
        padding: 1rem 5%;
        height: 70px; /* Slightly smaller on mobile but still consistent */
    }

    .nav-links {
        display: none;
    }

    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        margin-top: 0.5rem;
        padding: 0;
        width: 100%;
    }

    .dropdown-content:before {
        display: none;
    }

    .dropdown-content a {
        color: #2F3437 !important;
        padding: 8px 0;
        text-align: left;
    }

    .dropdown-content a:hover {
        transform: none;
        background-color: transparent;
    }

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

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

    .service-image-placeholder {
        height: 200px;
    }

    .services h2 {
        font-size: 2rem;
    }

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

    .work-showcase h2 {
        font-size: 2rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-content {
        padding: 3rem 5%;
        text-align: center;
    }

    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-image-placeholder {
        min-height: 300px;
    }

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

    .footer-section {
        text-align: center;
    }

    .newsletter-form {
        align-items: center;
    }

    .newsletter-form input {
        max-width: 300px;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-link {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.footer-bottom .developer a {
    color: #00ff00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom .developer a:hover {
    color: #00cc00;
} 

/* About page specific styles */
.about-hero {
    background-image: url('images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
}

.about-content {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    color: #2F3437;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-text ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.about-text ul li {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-text ul li:before {
    content: "•";
    color: #00ff00;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-info {
    background-color: #f8f8f8;
    padding: 5rem 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    text-align: left;
}

.contact-item h3 {
    color: #2F3437;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
    }

    .about-content {
        padding: 3rem 5%;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1rem;
    }

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

    .contact-item {
        text-align: center;
    }
} 

/* Update top spacing for all main content sections to account for fixed navbar height */
.hero,
.about-hero,
.team-section,
.gallery-section,
.contact-main-section {
    padding-top: 80px; /* Match navbar height */
}

@media (max-width: 768px) {
    .hero,
    .about-hero,
    .team-section,
    .gallery-section,
    .contact-main-section {
        padding-top: 70px;
    }
} 

/* Smooth transitions for buttons, links, cards, images */
.cta-button, .newsletter-form button, .team-contact-section a, .nav-links a, .dropdown-content a, .service-card, .work-image-placeholder, .gallery-image-placeholder, .service-image-placeholder, .team-image-placeholder, .social-link {
    transition: background-color 0.3s cubic-bezier(0.4,0,0.2,1),
                color 0.3s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.3s cubic-bezier(0.4,0,0.2,1),
                transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* Section fade-in animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero, .about-hero, .services, .work-showcase, .contact-section, .gallery-section, .team-section, .team-contact-section, .contact-main-section {
    animation: fadeInUp 1.1s cubic-bezier(0.4,0,0.2,1) both;
}

/* Card hover shadow - exclude service cards */
.work-image-placeholder:hover, .gallery-image-placeholder:hover, .team-image-placeholder:hover, .social-link:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 1.5px 6px rgba(0,255,0,0.08);
    z-index: 2;
} 

/* Shared hover/active scale motion for interactive elements */
.cta-button:hover, .cta-button:active,
.newsletter-form button:hover, .newsletter-form button:active,
.team-contact-section a:hover, .team-contact-section a:active,
.nav-links a:hover, .nav-links a:active,
.dropdown-content a:hover, .dropdown-content a:active,
.social-link:hover, .social-link:active,
.work-image-placeholder:hover, .work-image-placeholder:active,
.gallery-image-placeholder:hover, .gallery-image-placeholder:active,
.service-image-placeholder:hover, .service-image-placeholder:active,
.team-image-placeholder:hover, .team-image-placeholder:active {
    transform: scale(1.05);
    z-index: 2;
} 

.team-contact-section a {
    display: inline-block;
    background: #00ff00;
    color: black;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    min-width: 120px;
    width: fit-content;
    text-align: center;
} 

.contact-section .cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #00ff00;
    color: black;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-family: 'Outfit', sans-serif;
    min-width: 120px;
    width: fit-content;
}

.contact-section .cta-button:hover {
    background-color: #00cc00;
} 

@media (max-width: 768px) {
    .navbar {
        height: 80px;
    }
    
    .logo img {
        height: 50px;
    }
} 

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
} 