html {
    scroll-behavior: smooth;
}

:root {
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --color-primary: #1a1a1a;
    --color-secondary: #FF7A00; /* Vibrant Orange */
    --color-secondary-dark: #b35600; /* Darker Orange */
    --color-text: #f0f0f0;
    --color-bg: #111111;
    --header-height: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

.transition-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    transform: scaleY(0);
    transform-origin: top;
}

#transition-layer-1 {
    background-color: var(--color-secondary-dark);
}

#transition-layer-2 {
    background-color: var(--color-secondary);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease;
}

.site-header.scrolled {
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--header-height);
}

.logo img {
    height: 40px; 
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--color-secondary);
}

.cta-button {
    border: none;
    padding: 12px 25px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.whatsapp-button {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-button:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 .2c57.1 0 109.7 21.8 148.8 60.8 39.1 39.1 60.8 91.8 60.8 148.8 0 110.2-89.8 200-200 200-33.8 0-66.3-8.3-94.3-23.4l-7.1-4.2-67.6 17.7 17.9-65.8-4.5-7.4c-15.5-25.4-24.6-55-24.6-86.4 0-110.2 89.8-200 200-200zm94.4 293.2c-4.2-2.1-24.7-12.2-28.6-13.6-3.9-1.4-6.8-2.1-9.6 2.1-2.8 4.2-10.8 13.6-13.3 16.4-2.5 2.8-5 3.1-9.2 1.1-4.2-2.1-17.7-6.5-33.7-20.8-12.5-11.1-20.9-24.7-23.4-28.6-2.5-3.9-.3-6.1 1.8-8.1 2-1.8 4.2-4.5 6.3-6.7 2.1-2.2 2.8-3.9 4.2-6.7 1.4-2.8.7-5.3-1.1-7.4-1.8-2.1-9.6-23.2-13.2-31.8-3.6-8.6-7.2-7.4-9.9-7.5-2.6-.1-5.7-.1-8.5-.1-2.8 0-7.4 1.1-11.3 5.3-3.9 4.2-15.1 14.8-15.1 36.1 0 21.3 15.4 41.8 17.6 44.6 2.2 2.8 30.4 46.4 73.6 64.9 10.6 4.5 18.9 7.2 25.4 9.2 11.5 3.6 21.9 3.1 30.1 2-8.8-5.7-24.7-12.2-28.6-13.6z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.whatsapp-button:hover {
    background-color: #1DAA57;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

.cta-button-orange {
    background-color: var(--color-secondary);
    color: white;
}

.cta-button-orange:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--color-secondary);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    scroll-margin-top: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.tilt-container {
    transform-style: preserve-3d;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 12vw, 8rem);
    color: white;
    margin: 0;
    text-shadow: 0 0 30px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.5rem;
    margin: 1rem 0 2rem;
    text-shadow: 0 0 15px rgba(0,0,0,0.7);
    min-height: 2.2rem;
}

.intro-section {
    padding: 80px 10%;
    text-align: center;
}

.intro-section h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 40px;
    text-align: center;
}

/* Offer Services Section */
.offer-services-section {
    position: relative;
    padding: 100px 5%;
    color: white;
    text-align: center;
    scroll-margin-top: var(--header-height);
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/3861969/pexels-photo-3861969.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    filter: blur(8px) brightness(0.4);
    z-index: -1;
}

.offer-services-section.web-design .section-background {
    background-image: url('https://images.pexels.com/photos/1779487/pexels-photo-1779487.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.section-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-services-section h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.service-category h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.pricing-table-container {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    overflow-x: auto;
}

.pricing-table-container h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

table th, table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #444;
    word-wrap: normal;
}

table thead th {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
}

table tbody td:first-child {
    text-align: left;
    font-weight: bold;
}

table .check { color: #25D366; font-size: 1.5em; }

table .cross { color: #ff4d4d; font-size: 1.5em; }

table tfoot td {
    font-size: 1.8rem;
    font-weight: bold;
    padding-top: 20px;
    border: none;
}

table tfoot td:first-child {
     font-family: var(--font-heading);
     color: var(--color-secondary);
}

.footnote {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 20px;
    text-align: right;
}

.tech-section {
    padding: 80px 0; 
    text-align: center;
    overflow: hidden;
}

.tech-section h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 40px;
    text-align: center;
}

/* Tech Carousel Styles */
.tech-carousel-container {
    width: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.tech-carousel-track {
    display: flex;
    width: fit-content; 
    align-items: center;
}

.tech-carousel-track img {
    height: 80px; 
    max-width: 200px; 
    width: auto; 
    margin: 0 50px;
    filter: grayscale(1) brightness(1.5);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.tech-carousel-track img:hover {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    text-align: center;
    scroll-margin-top: var(--header-height);
}

.contact-section h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 50px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-column {
    background: rgba(26, 26, 26, 0.85);
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-column h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.whatsapp-huge-link img {
    width: 150px;
    transition: transform 0.3s ease;
}

.whatsapp-huge-link:hover img {
    transform: scale(1.1);
}

/* Footer */
.site-footer-bottom {
    background: #1c1c1c;
    padding: 40px 5%;
    margin-top: 80px; 
    text-align: center;
}

.footer-container-simple {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav a {
    color: var(--color-text);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-secondary);
}

.footer-legal {
    margin-bottom: 20px;
    color: #aaa;
}

.footer-legal a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
}

.footer-legal a:hover {
    color: var(--color-secondary);
}

.footer-copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 20px 5%;
    }

    nav ul {
        margin-top: 15px;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .intro-section {
        padding: 60px 5%;
    }
    
    .offer-services-section {
        padding: 80px 5%;
    }

    .pricing-table-container {
        padding: 20px;
    }

    table th, table td {
        padding: 10px 5px;
        font-size: 0.9rem;
    }

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

    .tech-section {
        padding: 60px 0;
    }

    .tech-carousel-track img {
        height: 60px;
        margin: 0 30px;
    }

    .footer-nav a {
        display: block;
        margin: 10px 0;
    }
}
