/* 
 * Main stylesheet for domain
 * Colors: 
 * - Primary: #1F1F3F (dark indigo)
 * - Accent 1: #F2B705 (gold-yellow)
 * - Accent 2: #23B5D3 (bright cyan)
 * - Text: #FFFFFF, #E0E0E0
 */

/* ---- Base Styles ---- */
:root {
    --primary: #1F1F3F;
    --accent1: #F2B705;
    --accent2: #23B5D3;
    --text-light: #FFFFFF;
    --text-muted: #E0E0E0;
    --gradient-primary: linear-gradient(135deg, #23B5D3, #F2B705);
    --gradient-dark: linear-gradient(135deg, #1F1F3F, #121225);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 6px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: #121225;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

h2.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--accent2);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary);
}

.btn-primary:hover {
    box-shadow: 0 5px 15px rgba(35, 181, 211, 0.4);
    transform: translateY(-3px);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent2);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--accent2);
    color: var(--primary);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* ---- Header ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(31, 31, 63, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
    transition: var(--transition);
}

.logo:hover {
    color: var(--accent1);
}

.main-nav {
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-links li a {
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--text-light);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: var(--primary);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-muted);
}

.dropdown-menu li a:hover {
    background-color: rgba(242, 183, 5, 0.1);
    color: var(--accent1);
}

/* Burger menu for mobile */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-icon .bar {
    height: 3px;
    width: 100%;
    background: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

/* ---- Hero Section ---- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    background-image: linear-gradient(rgba(31, 31, 63, 0.8), rgba(31, 31, 63, 0.8)), url('./img/TRobN.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* ---- About Section ---- */
.about {
    background: var(--gradient-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-text h3 {
    color: var(--accent1);
    margin-bottom: 20px;
}

/* ---- Services Section ---- */
.services {
    background-color: #121225;
}

.services h2 {
    text-align: center;
}

.services h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    margin-top: 20px;
    color: var(--accent2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* ---- Features Section ---- */
.features {
    background: var(--gradient-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: rgba(31, 31, 63, 0.6);
    border-radius: var(--radius);
    padding: 25px;
    transition: var(--transition);
    border-left: 4px solid var(--accent2);
}

.feature-item:hover {
    background-color: rgba(31, 31, 63, 0.9);
    transform: translateY(-5px);
}

.feature-item h3 {
    font-size: 1.4rem;
    color: var(--accent1);
}

/* ---- Contact Section ---- */
.contact {
    background-color: #121225;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    color: var(--accent1);
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info .info-item .icon {
    margin-right: 15px;
    color: var(--accent2);
    font-size: 1.2rem;
}

/* Custom select styling */
select.custom-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F2B705' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 45px;
    border: 2px solid var(--accent2);
    background-color: rgba(31, 31, 63, 0.8);
    box-shadow: 0 4px 10px rgba(35, 181, 211, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

select.custom-select:focus {
    border-color: var(--accent1);
    box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.3);
}

select.custom-select option {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 15px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

select.custom-select option:hover,
select.custom-select option:focus,
select.custom-select option:checked {
    background-color: var(--accent2);
    color: var(--primary);
}

/* Custom checkbox styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent2);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    background-color: rgba(31, 31, 63, 0.6);
    transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--accent2);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 14px;
    font-weight: bold;
}

.checkbox-group label {
    cursor: pointer;
    line-height: 1.5;
    flex: 1;
}

/* Form enhancers */
.contact-form {
    position: relative;
    background: linear-gradient(145deg, var(--primary), #252550);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(35, 181, 211, 0.2);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent2);
    outline: none;
    box-shadow: 0 0 0 3px rgba(35, 181, 211, 0.2);
}

.form-control::placeholder {
    color: rgba(224, 224, 224, 0.4);
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
    top: -12px;
    font-size: 0.85rem;
    color: var(--accent2);
}

.form-error {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: rgba(255, 107, 107, 0.1);
    border-left: 3px solid #ff6b6b;
    border-radius: 4px;
}

/* ---- Testimonials Section ---- */
.testimonials {
    background: var(--gradient-dark);
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
}

.testimonials h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin: 40px 0;
}

.testimonial-track {
    display: flex;
    width: 300%;
    animation: slideShow 30s infinite;
    animation-timing-function: linear;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes slideShow {
    0% { transform: translateX(0); }
    33.33% { transform: translateX(-33.33%); }
    66.66% { transform: translateX(-66.66%); }
    100% { transform: translateX(0); }
}

.testimonial-item {
    width: calc(100% / 3);
    padding: 0 15px;
    flex-shrink: 0;
}

.testimonial-card {
    background-color: rgba(31, 31, 63, 0.6);
    border-radius: var(--radius);
    padding: 30px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background-color: rgba(31, 31, 63, 0.9);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(242, 183, 5, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-name {
    font-weight: 600;
}

.client-position {
    color: var(--accent2);
    font-size: 0.9rem;
}

/* ---- FAQ Section ---- */
.faq {
    background-color: #121225;
}

.faq h2 {
    text-align: center;
}

.faq h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    position: relative;
    padding: 20px;
    background-color: var(--primary);
    color: var(--text-light);
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #2a2a56;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent2);
}

.faq-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(31, 31, 63, 0.6);
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 20px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question::after {
    content: '−';
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 500px;
}

/* ---- Footer ---- */
.site-footer {
    background-color: #121220;
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-links {
    display: contents;
}
.footer-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-column h4 {
    color: var(--accent1);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent2);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent2);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(224, 224, 224, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* ---- Cookie Consent ---- */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: var(--radius);
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* ---- Policy Pages ---- */
.policy-page {
    padding: 60px 0;
    background-color: #121225;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--primary);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.policy-container h1 {
    margin-bottom: 30px;
    color: var(--accent1);
}

.policy-container h2 {
    margin-top: 40px;
    font-size: 1.6rem;
}

.policy-container ul, .policy-container ol {
    margin: 20px 0 20px 20px;
}

.policy-container li {
    margin-bottom: 10px;
}

/* ---- Thank You Page ---- */
.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-container {
    background-color: var(--primary);
    border-radius: var(--radius);
    padding: 50px;
    max-width: 600px;
    box-shadow: var(--shadow);
    margin: 0 auto;
}

.thank-you h1 {
    color: var(--accent1);
    margin-bottom: 20px;
}

.thank-you p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ---- Animations ---- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Responsive Styles ---- */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
    
    .menu-icon {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--primary);
        flex-direction: column;
        width: 250px;
        padding: 20px 0;
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
        align-items: flex-start;
        gap: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links li a {
        display: block;
        padding: 12px 20px;
    }

    .nav-links li a::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        background-color: rgba(31, 31, 63, 0.5);
        box-shadow: none;
        transform: none;
        padding-left: 20px;
    }
    
    .menu-toggle:checked ~ .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .menu-toggle:checked ~ .menu-icon .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle:checked ~ .menu-icon .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        height: 350px;
    }
    
    .policy-container {
        padding: 30px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        height: 400px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Add favicon SVG */
/* We'll create a simple SVG favicon with the letter D in the accent colors */
.favicon-svg {
    display: none;
} 