* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Google Sans', sans-serif;
}

body {
    height: 100%;
    width: 80%;
    margin: 0 auto;
}

/* --------------- HEADER  -------------- */

.site-header {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #4B4B4B;
    padding: 20px;
}

.header-logo {
    width: 90px;
    height: 90px;
    filter: drop-shadow(-4px 4px 2px rgba(0, 0, 0, 0.3));
}

.brand-logo {
    width: 90px;
    height: 90px;
    filter: drop-shadow(-4px 4px 2px rgba(77, 75, 75, 0.3));
    margin-bottom: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 16px;
    letter-spacing: 1.5px;
}

/* --------------- NAVIGATION  -------------- */

.navbar {
    background: linear-gradient(to bottom left, #595957, #3A3A3A, #1F1F1F);
    padding: 0 30px; 
    display: flex;
    overflow: hidden;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch; 
    margin-left: auto; 
    width: 100%;
    max-width: 600px;
}

.nav-links li {
    flex: 1;
    display: flex;
}

.nav-links a {
    display: flex;          
    align-items: center;    
    justify-content: center;
    width: 100%;
    padding: 20px 0;        
    
    text-decoration: none;
    color: #ffffff;
    position: relative; 
    z-index: 1;

    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.5s ease;
}

.nav-links a:hover {
    transform: scale(1.15); 
    z-index: 2; 
    color: #ffffff; 
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #5c5c5c;
    z-index: -1;
    opacity: 0;
    transition: opacity 1s;
}

.nav-links a:hover::before {
    opacity: 1; 
}


/* --------------- MARQUEE  -------------- */

.logo-ticker {
    overflow: hidden;
    padding: 40px 0;
    background: linear-gradient(to bottom, #3A3A3A, #1F1F1F);
    width: 100%;
    position: relative;
}

.logo-ticker::before,
.logo-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-ticker::before {
    left: 0;
    background: linear-gradient(to right, #3A3A3A, transparent);
}

.logo-ticker::after {
    right: 0;
    background: linear-gradient(to left, #1F1F1F, transparent);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scrollLinear 25s linear infinite; 
    gap: 80px; 
}

.logo-slide {
    display: flex;
    align-items: center;
    gap: 80px; 
}

.logo-slide img {
    height: 35px;
    min-width: 60px; 
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-slide img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

@keyframes scrollLinear {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 40px));
    }
}

/* --------------- UNDER CONSTRUCTION  -------------- */

.construction-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background: linear-gradient(to bottom right, #3A3A3A, #1F1F1F);
    color: #ffffff;
    text-align: center;
    /* padding: 40px 20px; */
    /* border-radius: 12px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
    margin: 5px 0;
}

.brand-badge {
    font-size: 14px;
    letter-spacing: 4px;
    color: #8c8c8c;
    margin-bottom: 20px;
    font-weight: 700;
}

.construction-container h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.construction-container p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* --------------- COUNTDOWN TILES -------------- */

.countdown-container {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    min-width: 90px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.time-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.time-label {
    font-size: 0.8rem;
    color: #8c8c8c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    display: block;
}

/* --------------- PROGRESS LOADER -------------- */

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 50%;
    height: 100%;
    background: #ffffff;
    animation: loading 2s ease-in-out infinite alternate;
}

@keyframes loading {
    0% { transform: translateX(-100%); width: 30%; }
    100% { transform: translateX(250%); width: 50%; }
}

/* --------------- PROFESSIONAL FOOTER  -------------- */

.site-footer {
    /* background-color: #111111; */
    background: linear-gradient(to bottom left, #3A3A3A, #1F1F1F);
    color: #ffffff;
    padding: 60px 0 20px 0;
    margin-top: 5px; 
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Gives the brand block more breathing room */
    gap: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brand Column Specifics */
.brand-col .footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ffffff;
}

.brand-col .footer-about {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

/* Lists and Links Styling */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 12px;
    line-height: 1.4;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Bottom Bar Alignment */
.footer-bottom {
    border-top: 1px solid #bbbbbb;
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #666666;
}

.footer-legal a {
    color: #666666;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #a0a0a0;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal a {
        margin: 0 10px;
    }
}

/* --------------- SERVICES SECTION -------------- */

.services-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 62px;
    font-weight: 700;
    color: #1F1F1F;
    /* background: linear-gradient(to bottom left, #595957, #3A3A3A, #1F1F1F); */
    margin-bottom: 50px;
    letter-spacing: 1px;

    background: linear-gradient(to bottom left, #595957, #3A3A3A, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(to bottom right, #3A3A3A, #1F1F1F);
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 20px 30px 20px rgba(0, 0, 0, 0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-bullets {
    list-style: none;
    padding: 0;
}

.service-bullets li {
    font-size: 13px;
    color: #8c8c8c;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

/* Custom bullet indicator */
.service-bullets li::before {
    content: "•";
    color: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive layout adjustments */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 10px;
    }
}

/* --------------- CONTACT PAGE ENGINE -------------- */

.contact-page-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
}

.contact-hero {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.contact-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

/* Side-by-side grid structure */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Left side panels */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: linear-gradient(to bottom right, #3A3A3A, #1F1F1F);
    color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8c8c8c;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

/* Right side form block */
.contact-form-panel {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eeeeee;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #3A3A3A;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #1F1F1F;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3A3A3A;
    box-shadow: 0 0 0 3px rgba(58, 58, 58, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(to bottom left, #595957, #3A3A3A, #1F1F1F);
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: scale(1.01);
    opacity: 0.95;
}

/* Responsive breakpoint handling */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-panel {
        padding: 25px 20px;
    }
}

/* --------------- THANK YOU PAGE -------------- */

.thank-you-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
}

.thank-you-card {
    background: #ffffff;
    max-width: 550px;
    width: 100%;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eeeeee;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(to bottom left, #595957, #3A3A3A, #1F1F1F);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.success-icon svg {
    width: 35px;
    height: 35px;
}

.thank-you-card h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 15px;
}

.thank-you-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 35px;
}

.action-block {
    width: 100%;
}

.return-btn {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(to bottom left, #595957, #3A3A3A, #1F1F1F);
    color: #ffffff;
    text-decoration: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.return-btn:hover {
    transform: scale(1.01);
    opacity: 0.95;
}

.return-btn:active {
    transform: scale(0.99);
}

/* Responsive adjustment */
@media (max-width: 480px) {
    .thank-you-card {
        padding: 40px 20px;
    }
}

/* --------------- PRIVACY -------------- */

.legal-main {
    background: linear-gradient(to bottom right, #3A3A3A, #1F1F1F);
    color: #ffffff;
    min-height: 80vh;
    padding: 60px 40px;
    margin: 5px 0;
    font-family: 'Montserrat', sans-serif;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.back-btn {
    display: inline-block;
    text-decoration: none;
    color: #8c8c8c;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: #ffffff;
}

.legal-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.last-updated {
    font-size: 0.9rem;
    color: #8c8c8c;
    margin-bottom: 30px;
}

.legal-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.legal-section {
    margin-bottom: 35px;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.legal-section p, .legal-section ul {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.7;
}

.legal-section ul {
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 8px;
}

/* Highlight panel for Meta's core WhatsApp requirement */
.meta-compliance-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #ffffff;
    border-radius: 0 8px 8px 0;
    padding: 25px;
    margin: 35px 0;
}

.meta-compliance-box h3 {
    color: #ffffff;
}

.meta-compliance-box p {
    color: #ffffff;
    font-weight: 500;
}

/* Contact Details Card */
.officer-details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    list-style: none !important;
    padding-left: 25px !important;
}

.officer-details li {
    color: #cccccc;
    font-size: 0.95rem;
}

.officer-details strong {
    color: #ffffff;
}

/* --------------- CODE ANIMATION -------------- */


.code-animation-icon {
    width: 100px;
    height: 70px;
    background: #252525;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.terminal-header {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.terminal-header .dot {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.terminal-body {
    font-family: monospace;
    font-size: 10px;
    color: #ffffff;
}

.code-line {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid transparent;
    width: 0;
}

.line-1 {
    animation: typeCode 3s steps(15) infinite;
}

.line-2 {
    color: #8c8c8c;
    animation: typeCode 3s steps(15) infinite 1.5s;
}

@keyframes typeCode {
    0% { width: 0; }
    30% { width: 100%; border-right-color: #fff; }
    80% { width: 100%; border-right-color: transparent; }
    100% { width: 0; }
}


/* --------------- COMMUNICATIONS -------------- */

.card-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-contact a:hover {
    color: #a0a0a0;
}

.footer-contact a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a:hover {
    color: #ffffff;
}

.compliance-contact a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    /* align-items: center; */
    gap: 8px;
}

.compliance-contact a:hover {
    color: #ffffff;
}