/* Global Styles */
:root {
    --primary-color: #f37a2c;
    --primary-dark: #e6691a;
    --secondary-color: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --bg-light: #2a2a2a;
    --bg-white: #1e1e1e;
    --bg-dark: #121212;
    --border-color: #404040;
    --success-color: #4CAF50;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.5);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.6);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    left: 20px;
    max-width: 450px;
    z-index: 10;
}

.logo {
    height: 70px;
    width: auto;
}

.brand-text {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-left: auto;
    margin-right: 50px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 20px 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #2a1a0a 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.hero-logo-symbol {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.logo-symbol {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(243, 122, 44, 0.4));
}

.hero-title {
    margin-bottom: 1.5rem;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), #ffffff, #f37a2c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(243, 122, 44, 0.5));
    animation: electricGlow 2s ease-in-out infinite alternate;
}

@keyframes electricGlow {
    from {
        filter: drop-shadow(0 0 30px rgba(243, 122, 44, 0.5));
    }
    to {
        filter: drop-shadow(0 0 50px rgba(243, 122, 44, 0.8))
                drop-shadow(0 0 70px rgba(243, 122, 44, 0.6));
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f5a373;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px rgba(243, 122, 44, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 122, 44, 0.35);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.stat i {
    color: var(--primary-color);
    font-size: 1.25rem;
}



/* Services Section */
.services {
    padding: 60px 20px;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card.featured {
    background: var(--primary-color);
    color: white;
}

.service-card.featured p,
.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(243, 122, 44, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card.featured .service-icon i {
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-card.featured .service-features li::before {
    color: white;
}

/* Gallery Section */
.gallery {
    padding: 60px 20px;
    background: var(--bg-dark);
}

.gallery-container {
    position: relative;
    margin-top: 3rem;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(5px);
    }
    60% {
        transform: translateX(3px);
    }
}

.gallery-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0 2rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Visible scrollbar styling */
.gallery-scroll::-webkit-scrollbar {
    height: 12px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 6px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
    border: 2px solid var(--bg-light);
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Firefox scrollbar */
.gallery-scroll {
    scrollbar-width: auto;
    scrollbar-color: var(--primary-color) var(--bg-light);
}

.gallery-item {
    flex: 0 0 auto;
    width: 400px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

/* About Us Section */
.about {
    padding: 60px 20px;
    background: var(--bg-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-content p:first-child {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0 30px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.testimonials .container {
    padding: 0 20px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}

.row {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.row-content {
    display: flex;
    gap: 20px;
    animation: scrollLeft 150s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.comment-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    min-width: 380px;
    max-width: 380px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.comment-card:hover {
    background-color: var(--bg-dark);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.comment-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    background-color: var(--primary-color);
    flex-shrink: 0;
}

.user-info {
    flex: 1;
}

.username {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 4px;
}

.timestamp {
    font-size: 13px;
    color: var(--text-secondary);
}

.comment-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 8px;
}

.stars {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
}

/* Expertise Section */
.expertise {
    padding: 60px 20px;
    background: var(--bg-light);
}

.expertise-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.expertise-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.point {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: start;
    text-align: left;
}

.point i {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.point h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta .btn-primary {
    background: var(--bg-dark);
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--bg-light);
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-color);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.info-card p {
    margin-bottom: 0.25rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--bg-dark);
    color: var(--text-primary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 1.5rem;
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 20px 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-contact p {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (min-width: 1400px) {
    .nav-brand {
        max-width: 500px;
    }

    .brand-text {
        font-size: 1.6rem;
    }

    .nav-menu {
        margin-right: 80px;
        gap: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .logo-symbol {
        width: 150px;
    }

    .logo {
        height: 60px;
    }

    .brand-text {
        font-size: 1.3rem;
    }

    .nav-menu {
        margin-right: 40px;
        gap: 2.5rem;
    }

    .nav-brand {
        max-width: 400px;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.5);
        transition: right 0.3s ease;
        border-left: 1px solid var(--border-color);
        margin-left: 0;
        margin-right: 0;
        gap: 2rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-brand {
        max-width: calc(100% - 80px);
        width: auto;
    }

    .brand-text {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
    }

    .navbar {
        padding: 1.5rem 0;
    }

    .logo {
        height: 55px;
    }

    .logo-symbol {
        width: 120px;
    }

    .gallery-item {
        width: 300px;
        height: 225px;
    }

    .gallery-item img {
        object-fit: contain;
        object-position: center;
    }

    .gallery-scroll {
        gap: 1.5rem;
    }

    .comment-card {
        min-width: 320px;
        max-width: 320px;
        padding: 20px;
    }

    .row-content {
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .expertise-points {
        grid-template-columns: 1fr;
    }

    .about {
        padding: 40px 15px;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .about-content p:first-child {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 2.5rem 0;
    }

    .hero {
        padding: 110px 15px 40px;
        min-height: 95vh;
    }

    .logo {
        height: 60px;
    }

    .nav-brand {
        max-width: calc(100% - 80px);
        width: auto;
    }

    .brand-text {
        font-size: 0.95rem;
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
    }

    .logo-symbol {
        width: 300px;
    }

    .hero-logo-symbol {
        margin-bottom: 1.5rem;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .hero-buttons {
        margin-bottom: 1.5rem;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-stats {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        width: 200px;
        text-align: center;
    }

    .services {
        padding: 40px 15px;
    }

    .gallery {
        padding: 40px 15px;
    }

    .testimonials {
        padding: 40px 0 20px 0;
    }

    .expertise {
        padding: 40px 15px;
    }

    .contact {
        padding: 40px 15px;
    }

    .section-header {
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .service-card {
        padding: 1.5rem;
        margin: 0 5px;
    }

    .service-card h3 {
        font-size: 1.125rem;
    }

    .service-card p {
        font-size: 0.875rem;
    }

    .service-features li {
        font-size: 0.875rem;
    }

    .service-card .service-icon {
        text-align: center;
        margin: 0 auto 1.5rem auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-card h3 {
        text-align: center;
    }

    .service-card p {
        text-align: center;
    }

    .gallery-item {
        width: 220px;
        height: 165px;
    }

    .gallery-item img {
        object-fit: contain;
        object-position: center;
    }

    .gallery-scroll {
        gap: 0.75rem;
    }

    .scroll-indicator {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .comment-card {
        min-width: 240px;
        max-width: 240px;
        padding: 14px;
    }

    .row-content {
        gap: 8px;
    }

    .comment-header {
        gap: 12px;
        margin-bottom: 12px;
    }

    .avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .username {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .comment-text {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    .timestamp {
        font-size: 10px;
    }

    .stars svg {
        width: 14px;
        height: 14px;
    }

    .expertise-points {
        gap: 1rem;
    }

    .point {
        margin-bottom: 1rem;
    }

    .point h4 {
        font-size: 1rem;
    }

    .point p {
        font-size: 0.875rem;
    }

    .contact-content {
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h3 {
        font-size: 1rem;
    }

    .info-card a {
        font-size: 1rem;
    }

    .cta {
        padding: 40px 15px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer {
        padding: 40px 15px 15px;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-contact p {
        word-break: break-word;
        min-width: 0;
    }

    .nav-link {
        padding: 1rem 0;
        font-size: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        padding: 0.875rem;
    }

    .contact-form textarea {
        min-height: 120px;
    }

    .form-row {
        margin-bottom: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-container {
        padding: 0 10px;
    }

    .navbar {
        padding: 1rem 0;
    }

    .nav-container {
        padding: 2rem 15px;
    }

    .nav-menu {
        margin-left: 0;
        margin-right: 0;
        gap: 2rem;
    }

    .hamburger {
        position: absolute;
        right: 15px;
        z-index: 1001;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 390px) {
    .logo {
        height: 45px;
    }

    .nav-brand {
        max-width: calc(100% - 70px);
    }

    .brand-text {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
    }

    .logo-symbol {
        width: 240px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 5px;
    }

    .btn {
        width: 180px;
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }

    .gallery-item {
        width: 200px;
        height: 150px;
    }

    .comment-card {
        min-width: 220px;
        max-width: 220px;
        padding: 12px;
    }

    .comment-header {
        gap: 10px;
        margin-bottom: 10px;
    }

    .avatar {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .username {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .comment-text {
        font-size: 11px;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .timestamp {
        font-size: 9px;
    }

    .stars svg {
        width: 12px;
        height: 12px;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card .service-icon {
        text-align: center;
        margin: 0 auto 1.5rem auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-card h3 {
        text-align: center;
    }

    .service-card p {
        text-align: center;
    }

    .about {
        padding: 40px 10px;
    }

    .about-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .about-content p:first-child {
        font-size: 1.05rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1.15rem; }

    .section-title {
        font-size: 1.35rem;
    }

    .container {
        padding: 0 10px;
    }

    .hero-container {
        padding: 0 5px;
    }
}

/* Extra Small Screens - Hide part of brand text if needed */
@media (max-width: 450px) {
    .nav-brand {
        max-width: calc(100% - 75px);
    }

    .brand-text {
        font-size: 0.9rem;
        line-height: 1.2;
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
    }

    .logo {
        height: 50px;
    }
}

@media (max-width: 350px) {
    .brand-text {
        font-size: 0.75rem;
        line-height: 1.1;
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
    }
    
    .nav-brand {
        gap: 0.5rem;
        max-width: calc(100% - 65px);
    }

    .logo {
        height: 40px;
    }
}

@media (max-width: 320px) {
    .brand-text {
        font-size: 0.7rem;
        line-height: 1;
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
    }
    
    .nav-brand {
        gap: 0.3rem;
        max-width: calc(100% - 60px);
    }

    .logo {
        height: 35px;
    }
}

/* Electric Effects */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: float 20s infinite linear;
}

@keyframes float {
    from {
        transform: translateY(100vh) translateX(0);
    }
    to {
        transform: translateY(-100vh) translateX(100px);
    }
}

#lightning-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}



.electric-btn {
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.electric-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.electric-btn:hover::before {
    left: 100%;
}

.electric-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243, 122, 44, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Print styles */
@media print {
    .navbar, .footer, .btn, .contact-form {
        display: none;
    }
    
    body {
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
} 