/* CSS Reset & Base Styles */
:root {
    --black: #000000;
    --dark: #000000;
    --darker: #000000;
    --light: #ffffff;
    --lighter: rgba(255,255,255,0.9);
    --light-gray: rgba(255,255,255,0.7);
    --medium-gray: rgba(255,255,255,0.5);
    --dark-gray: #000000;
    --border-color: rgba(255,255,255,0.15);
    --accent-color: rgba(255,255,255,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--black);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background-color: var(--light);
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Add this to your CSS file */
.service-card {
    cursor: pointer;
    position: relative;
}

.service-card-content {
    position: relative;
    z-index: 2;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}
.section {
    padding: 150px 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.section-no-border {
    border-bottom: none;
}

.section-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 80px;
    line-height: 1.2;
    position: relative;
    color: var(--lighter);
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--light-gray);
    margin-bottom: 30px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background-color: transparent;
    color: var(--light);
    border: 1px solid var(--light);
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn:hover {
    color: var(--black);
    border-color: transparent;
}

.btn:hover::before {
    left: 0;
}

.btn-accent {
    border-color: var(--accent-color);
    color: var(--light);
    background-color: transparent;
}

.btn-accent:hover {
    background-color: var(--accent-color);
    color: black;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border-bottom: 1px solid var(--border-color);
}

#navbar.scrolled {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lighter);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 50px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--light-gray);
}

.nav-links a:hover {
    color: var(--lighter);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--lighter);
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    color: var(--lighter);
    font-size: 1.5rem;
}

/* Hero Section */
#home {
    height: 100vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 50%, rgba(20, 20, 20, 0.8) 0%, var(--black) 70%);
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--lighter);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: var(--light-gray);
    max-width: 600px;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('../img/1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--black) 0%, rgba(0, 0, 0, 0) 20%);
}

/* Services Section */
#services {
    background-color: var(--darker);
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--dark);
    padding: 60px 40px;
    border: 1px solid var(--border-color);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-number {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--lighter);
}

.service-card p {
    color: var(--light-gray);
    font-size: 1rem;
    margin-bottom: 30px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--lighter);
}

.service-link i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Locations Section */
#locations {
    background-color: var(--black);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.location-card {
    background-color: var(--dark);
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.location-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--lighter);
}

.location-card p {
    color: var(--light-gray);
    margin-bottom: 25px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-info span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.location-info i {
    margin-right: 10px;
    width: 16px;
}

/* Process Section */
#process {
    background-color: var(--black);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 100px;
    height: 100px;
    background-color: var(--black);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--lighter);
    flex-shrink: 0;
}

.step-content {
    padding-top: 20px;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--lighter);
}

.step-content p {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* About Section */
#about {
    background-color: var(--black);
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 40px;
}

.about-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--light-gray);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.stat-item h4 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--lighter);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    height: 600px;
}

.about-img {
    position: absolute;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-color);
}

.about-img-1 {
    width: 70%;
    height: 70%;
    top: 0;
    right: 0;
}

.about-img-2 {
    width: 60%;
    height: 50%;
    bottom: 0;
    left: 0;
}

/* Gallery Section */
#gallery {
    background-color: var(--darker);
    padding-bottom: 0;
    border-bottom: none;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.gallery-item {
    aspect-ratio: 16/14.5;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.gallery-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--lighter);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-category {
    font-size: 0.9rem;
    color: var(--light-gray);
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

/* Contact Section */
#contact {
    background-color: var(--black);
    border-bottom: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.contact-card {
    background-color: var(--dark);
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--light);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--light);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--lighter);
}

.contact-card a, .contact-card p {
    color: var(--light-gray);
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.contact-card a:hover {
    color: var(--lighter);
}

.contact-form-container {
    background-color: var(--dark);
    padding: 80px;
    border: 1px solid var(--border-color);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--lighter);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--light);
}

.contact-form textarea {
    resize: none;
    height: 150px;
}

.form-submit {
    grid-column: span 2;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--darker);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: var(--lighter);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--lighter);
}

.footer-col p {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.copyright {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--light-gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--lighter);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--light);
    border-color: var(--light);
}

/* Service Pages Styles */
.service-hero {
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), var(--bg-image);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 1px solid var(--border-color);
}

.service-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--lighter);
}

.service-hero p {
    font-size: 1.4rem;
    color: var(--light-gray);
    max-width: 800px;
    margin: 0 auto;
}

.service-details {
    padding: 100px 0;
    background-color: var(--darker);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-feature i {
    color: var(--light);
    font-size: 1.1rem;
}

.service-process {
    background-color: var(--dark);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.process-step-service {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.process-step-service:last-child {
    margin-bottom: 0;
}

.step-number-service {
    width: 40px;
    height: 40px;
    background-color: var(--light);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content-service h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--lighter);
}

.step-content-service p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* Resources Pages Styles */
.page-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--darker);
    border-bottom: 1px solid var(--border-color);
}

.page-content {
    padding: 100px 0;
    background-color: var(--black);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--lighter);
}

.content-section p {
    color: var(--light-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    color: var(--light-gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1440px) {
    .section-title {
        font-size: 3.5rem;
    }
    .hero-content h1 {
        font-size: 5rem;
    }
}

@media (max-width: 1200px) {
    .section {
        padding: 120px 0;
    }
    .about-container {
        gap: 50px;
    }
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 3rem;
        margin-bottom: 60px;
    }
    .hero-content h1 {
        font-size: 4rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-image {
        height: 400px;
        margin-top: 60px;
    }
    .contact-form-container {
        padding: 50px;
    }
    .service-hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 100px 0;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .gallery-container {
        grid-template-columns: 1fr;
    }
    .process-steps::before {
        left: 40px;
    }
    .process-step {
        gap: 30px;
    }
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-left: 60px;
        transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1000;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        margin: 20px 0;
    }
    .hamburger {
        display: block;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .contact-form {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .form-submit {
        grid-column: span 1;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .service-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2.2rem;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .gallery-item {
        height: 300px;
    }
    .btn {
        padding: 15px 30px;
    }
    .process-steps::before {
        display: none;
    }
    .process-step {
        flex-direction: column;
        gap: 20px;
    }
    .contact-form-container {
        padding: 30px;
    }
    .service-hero {
        height: 50vh;
        min-height: 400px;
    }
    .service-hero h1 {
        font-size: 2.2rem;
    }
    
}