:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --light: #f0f0f0;
    --dark: #0f3460;
    --text: #333;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.elementor-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header - Elementor Compatible */
.elementor-header {
    background-color: var(--primary);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.elementor-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.elementor-logo span {
    color: var(--accent);
    margin-left: 3px;
}

.elementor-nav {
    display: flex;
    align-items: center;
}

.elementor-menu {
    display: flex;
    list-style: none;
}

.elementor-menu li {
    margin: 0 12px;
}

.elementor-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 5px;
    transition: var(--transition);
}

.elementor-menu a:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.elementor-button {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.elementor-button:hover {
    background: #d32f4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.elementor-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

/* Elementor Content Area */
.site-content {
    padding-top: 50px; /* Compensate for fixed header */
}

/* Footer */
.elementor-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .elementor-mobile-toggle {
        display: flex;
    }
    
    .elementor-nav .elementor-menu {
        display: none;
    }
    
    .elementor-button {
        display: none;
    }
}


.tnt-hero {
    position: relative;
    overflow: hidden;
    padding: 180px 0 100px;
}

.tnt-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.tnt-button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.tnt-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--tnt-transition);
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
}

.tnt-button-primary {
    background-color: var(--tnt-accent);
    color: var(--tnt-white);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.tnt-button-primary:hover {
    background: #d32f4a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.tnt-button-secondary {
    background: transparent;
    color: var(--tnt-white);
    border: 2px solid var(--tnt-white);
}

.tnt-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.tnt-button i {
    margin-right: 8px;
    font-size: 0.9em;
}

/* Hero Shapes */
.tnt-hero-shape {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.tnt-shape-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 15px solid var(--tnt-accent);
    top: -150px;
    right: -150px;
}

.tnt-shape-triangle {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 350px solid var(--tnt-accent);
    bottom: -175px;
    left: -100px;
    transform: rotate(25deg);
}

.tnt-shape-square {
    width: 200px;
    height: 200px;
    border: 10px solid var(--tnt-accent);
    top: 50%;
    right: 10%;
    transform: rotate(45deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tnt-hero {
        text-align: center;
        padding: 150px 0 80px;
    }
    
    .tnt-button-group {
        justify-content: center;
    }
    
    .tnt-shape-square {
        display: none;
    }
}