/* assets/css/style.css */
:root {
    --primary: #0066cc;
    --primary-dark: #0055aa;
    --accent: #ff6600;
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --dark-surface-light: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border: #333333;
    --success: #4caf50;
    --error: #f44336;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

.dark-theme {
    background-color: var(--dark-bg);
    color: var(--text-primary);
}

h1, h2, h3, h4, h5 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: rgba(30, 30, 30, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.logo-icon i {
    font-size: 24px;
    color: white;
}

.logo h1 {
    font-size: 24px;
    color: var(--text-primary);
}

.logo span {
    color: var(--accent);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

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

nav ul li a i {
    margin-left: 5px;
    font-size: 12px;
}

/* Dropdown */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark-surface);
    min-width: 260px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--text-primary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--dark-surface-light);
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn.primary {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

.btn.primary:hover {
    background: #e55d00;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 102, 0, 0.3);
}

.btn.secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn.secondary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.btn.small {
    padding: 8px 20px;
    font-size: 13px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--dark-surface);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    padding: 0 20px;
}

.service-card p {
    color: var(--text-secondary);
    padding: 0 20px 20px;
    min-height: 60px;
}

.service-card .btn {
    display: block;
    margin: 0 20px 20px;
    text-align: center;
}

/* Why Choose Us */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Contact Page */
.contact-hero {
    padding: 150px 0 100px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--accent);
    margin-right: 15px;
    min-width: 30px;
    padding-top: 5px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form {
    background: var(--dark-surface);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--dark-surface-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.error-message {
    background: rgba(244, 67, 54, 0.1);
    border-left: 4px solid var(--error);
    padding: 15px;
    margin-bottom: 20px;
}

.error-message ul {
    margin-left: 20px;
}

.success-message {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid var(--success);
    padding: 30px;
    text-align: center;
}

.success-message i {
    font-size: 50px;
    color: var(--success);
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: var(--dark-surface);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

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

.footer-about .logo {
    margin-bottom: 10px;
    text-align: left;
}

.footer-about .logo svg {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: 0;
    margin-right: 0;
}

.footer-about {
    /* text-align: center; */
}

.footer-about p {
    text-align: left;
}

.footer-about .logo {
    margin-bottom: 10px;
}

.footer-about .social-links {
    margin-top: 10px;
    justify-content: left;
}

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

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-surface-light);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

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

.footer-services h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-services h4:after,
.footer-contact h4:after,
.footer-newsletter h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    margin-bottom: 10px;
}

.footer-services a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.footer-contact i {
    min-width: 30px;
    color: var(--accent);
}

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 15px;
    background: var(--dark-surface-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.footer-newsletter button {
    width: 100%;
    padding: 12px 15px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.footer-newsletter button:hover {
    background: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 30px;
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    nav ul li {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        display: none;
    }
    
    .header-contact {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  background: #ff6600;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  outline: 2px solid #fff;
  box-shadow: 0 0 0 3px #ff6600;
}

/* Improve focus outline for accessibility */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #ff6600;
  outline-offset: 2px;
}

/* Booking/Quote Form Styles */
.booking-form {
  background: var(--dark-surface);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin: 40px auto;
}
.booking-form .form-group {
  margin-bottom: 20px;
}
.booking-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 15px;
  background: var(--dark-surface-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
.booking-form textarea {
  height: 120px;
  resize: vertical;
}
.booking-form .consent-label {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-form .btn {
  width: 100%;
  margin-top: 10px;
}
.booking-form input[type="file"] {
  background: none;
  color: var(--text-secondary);
  padding: 0;
}
.booking-form input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

/* Testimonials Styles */
.testimonials-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.testimonial {
  background: var(--dark-surface);
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: relative;
}
.testimonial blockquote {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 18px;
  font-style: italic;
  line-height: 1.5;
  quotes: "\201C" "\201D";
}
.testimonial blockquote:before {
  content: open-quote;
  color: var(--accent);
  font-size: 2.5rem;
  vertical-align: -0.4em;
  margin-right: 6px;
}
.testimonial-meta {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.gallery-item {
  background: var(--dark-surface);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.gallery-caption {
  padding: 15px 10px;
  color: var(--text-secondary);
  font-size: 1rem;
  text-align: center;
}

/* Hide mobile menu and button on desktop */
.mobile-menu-btn, .mobile-menu {
  display: none;
}
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  /* .mobile-menu is hidden by default, only .active shows it */
  .mobile-menu.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
    animation: glassSlideIn 0.5s cubic-bezier(.4,0,.2,1);
  }
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  z-index: 2000;
  padding: 40px 0 0 0;
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
  opacity: 0;
  pointer-events: none;
}

/* Glassmorphism Utility */
.glass {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}

/* Mobile Menu Glassmorphism & Animation */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  z-index: 2000;
  padding: 40px 0 0 0;
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  animation: glassSlideIn 0.5s cubic-bezier(.4,0,.2,1);
}
@keyframes glassSlideIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-menu li {
  margin: 18px 0;
}
.mobile-menu, .mobile-menu .mobile-dropdown-content {
  /* Apply glass effect */
  background: rgba(30, 30, 30, 0.7);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}
.mobile-menu a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.mobile-menu a:hover, .mobile-menu a:focus {
  background: rgba(255,255,255,0.12);
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 8px;
  padding-left: 24px;
}
.mobile-dropdown-content.active {
  display: flex;
}

/* Dropdown Glassmorphism */
.dropdown-content {
  background: rgba(30, 30, 30, 0.7);
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}
.dropdown-content a {
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  margin: 2px 0;
}
.dropdown-content a:hover, .dropdown-content a:focus {
  background: rgba(255,255,255,0.12);
  color: var(--accent);
}

/* Card Glassmorphism & Hover Reflection */
.service-card, .testimonial, .gallery-item {
  background: rgba(30, 30, 30, 0.7);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover, .testimonial:hover, .gallery-item:hover {
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.28);
  transform: translateY(-6px) scale(1.03);
}
.service-card::before, .testimonial::before, .gallery-item::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 120%; height: 60px;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.02) 100%);
  filter: blur(2px);
  pointer-events: none;
  z-index: 2;
}

/* Glassy Buttons */
.btn, .btn.primary, .btn.secondary {
  background: rgba(255,255,255,0.08);
  border: 2px solid var(--accent);
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(31,38,135,0.10);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn.primary {
  background: linear-gradient(90deg, var(--accent) 60%, rgba(255,255,255,0.12) 100%);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn.primary:hover, .btn.primary:focus {
  background: linear-gradient(90deg, #e55d00 60%, rgba(255,255,255,0.18) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,102,0,0.18);
  transform: translateY(-2px) scale(1.04);
}
.btn.secondary {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn.secondary:hover, .btn.secondary:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,102,0,0.18);
  transform: translateY(-2px) scale(1.04);
}

main, .main-content, #main-content {
  padding-top: 100px;
}
section.container {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Fix: Only set width: auto for checkboxes inside consent-label */
.contact-form .consent-label input[type="checkbox"] {
  width: auto !important;
  margin-right: 8px;
}

/* Remove debug border */
.contact-form .form-group .consent-label {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 14px;
  font-weight: 400;
  border: none;
}

/* Global hyperlink color for dark backgrounds */
a, a:visited {
  color: #fff !important;
}

.services-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .services-3x3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-3x3 {
    grid-template-columns: 1fr;
  }
} 