/* About Us Section */
.about-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0 3rem 0;
    border-bottom: 1px solid #333;
}
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}
.about-description {
    color: #999;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.about-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px;
}
.about-list li {
    color: #ffd700;
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: background 0.3s, color 0.3s;
}
.about-list li:hover {
    background: #ffd700;
    color: #0d0d0d;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }
    .about-description {
        font-size: 1rem;
    }
    .about-list li {
        font-size: 0.95rem;
    }
}
/*
Theme Name: tacforce
Theme URI: https://tacforce.com
Description: A professional WordPress theme designed for Smart Pipeline Solutions - specialized industrial equipment company serving oil, gas, and construction industries.
Author: Chethan S Poojary
Author URI: https://chethanspoojary.com
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tacforce-theme
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0d0d0d;
}

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

.hidden {
    display: none !important;
}

/* Header Styles */
.header {
    background-color: #1a1a1a;
    color: white;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #333;
}

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

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

.logo-image {
    height: 2.5rem;
    width: auto;
    max-width: 5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
}

@media (max-width: 768px) {
    .logo-image {
        height: 2rem;
        max-width: 4rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
}

.logo-subtitle {
    display: block;
    font-size: 0.75rem;
    color: white;
    font-weight: normal;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

/* Remove default list styling for WordPress menus */
.nav-desktop ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav .sub-menu {
    padding-left: 1rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
}

.chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

/* Desktop Dropdown Styles */
.nav-dropdown {
    /* position: relative; */
}

/* WordPress Menu Classes */
.nav-desktop .menu-item-has-children {
    position: relative;
}

.nav-desktop .menu-item-has-children > a .chevron {
    transition: transform 0.3s ease;
}

.nav-desktop .menu-item-has-children:hover > a .chevron {
    transform: rotate(180deg);
}

/* Fix for WordPress menu structure */
.nav-desktop .menu-item {
    display: inline-block;
    position: relative;
}

.nav-desktop .menu-item > a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-desktop .menu-item > a:hover {
    color: #ffd700;
}

.nav-dropdown:hover .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%; /* directly below parent */
    left:50%;
    transform: translateX(-50%) translateY(-15px) !important; /* center align + initial slide up */
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0.5rem;
    min-width: 1200px;
    padding: 1.5rem;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 100;
    opacity: 0;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .dropdown-menu {
        min-width: 1024px;
    }
}

.dropdown-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.nav-dropdown:hover .dropdown-menu,
.nav-desktop .menu-item-has-children:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-column {
    display: flex;
    flex-direction: column;
}

.dropdown-title {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
    text-decoration: none;
    display: block;
}

.dropdown-title:hover {
    color: #ffd700;
    opacity: 0.8;
}

.dropdown-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 0.25rem;
    padding-left: 0.5rem;
    margin-left: -0.5rem;
}

.dropdown-link:hover {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
    padding-left: 0.75rem;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    padding: 1rem 0;
    border-top: 1px solid #333;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.75rem 0;
    transition: color 0.3s ease;
    display: block;
}

.mobile-nav-link:hover {
    color: #ffd700;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

/* WordPress Menu Classes for Mobile */
.mobile-nav .menu-item {
    display: block;
    width: 100%;
}

.mobile-nav .menu-item > a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.75rem 0;
    transition: color 0.3s ease;
    display: block;
    width: 100%;
}

.mobile-nav .menu-item > a:hover {
    color: #ffd700;
}

.mobile-nav .menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-chevron {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(255, 215, 0, 0.05);
    border-left: 2px solid #ffd700;
    margin:0;
    padding: 0 1rem;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 500px;
    padding: 1rem;
    overflow: auto;
}

.mobile-dropdown-section {
    margin-bottom: 1rem;
}

.mobile-dropdown-section h5 {
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-section-title {
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: block;
}

.mobile-section-title:hover {
    color: #ffd700;
    opacity: 0.8;
}

.mobile-sub-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.4rem 0;
    padding-left: 1rem;
    display: block;
    transition: color 0.3s ease;
    border-left: 1px solid transparent;
}

.mobile-sub-link:hover {
    color: #ffd700;
    border-left-color: #ffd700;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-background {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

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

.hero-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn.primary {
    background-color: #ffd700;
    color: #0d0d0d;
    border-color: #ffd700;
}

.hero-btn.primary:hover {
    background-color: transparent;
    color: #ffd700;
    transform: translateY(-2px);
}

.hero-btn.secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.hero-btn.secondary:hover {
    background-color: white;
    color: #0d0d0d;
    transform: translateY(-2px);
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
}

.hero-nav-btn {
    background-color: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.5);
    color: #ffd700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background-color: rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
    transform: scale(1.1);
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.75rem;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.5);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background-color: #ffd700;
    border-color: #ffd700;
    transform: scale(1.2);
}

.hero-indicator:hover {
    border-color: #ffd700;
    transform: scale(1.1);
}

.hero-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, #ffd700, transparent);
    opacity: 0.8;
}

/* Mobile Responsive for Hero */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 200px;
        text-align: center;
    }
    
    .hero-nav {
        padding: 0 1rem;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-indicators {
        bottom: 1rem;
    }
}

/* News Section */
.news-section {
    background-color: #1a1a1a;
    padding: 4rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background-color: #0d0d0d;
    border: 1px solid #333;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.news-image-container {
    position: relative;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-image-overlay {
    opacity: 1;
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: rgba(255, 215, 0, 0.8);
}

.news-excerpt {
    color: #999;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-date {
    font-size: 0.75rem;
    color: #666;
}

.read-more {
    color: #ffd700;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: rgba(255, 215, 0, 0.8);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 0;
    align-items: start;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr;
        gap: 5rem;
    }
}

.footer-brand {
    max-width: 500px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 4rem;
    width: auto;
    max-width: 8rem;
}

.footer-brand .footer-logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .footer-logo-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-logo-image {
        height: 3rem;
        max-width: 6rem;
    }
    
    .footer-brand .footer-logo {
        font-size: 2rem;
    }
}

.footer-logo-subtitle {
    display: block;
    font-size: 0.9rem;
    color: white;
    font-weight: normal;
    opacity: 0.9;
}

.footer-description {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 1.5rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .footer-section {
        align-items: flex-end;
        text-align: right;
    }
}

.footer-title {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.025em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    position: relative;
}

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

@media (min-width: 768px) {
    .footer-links a:hover {
        transform: translateX(5px);
    }
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: #999;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffd700;
}

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

.news-card {
    animation: fadeInUp 0.6s ease-out;
}

.news-card:nth-child(2) {
    animation-delay: 0.1s;
}

.news-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
}

/* Products Section */
.products-section {
    background-color: #0d0d0d;
    padding: 4rem 0;
    border-bottom: 1px solid #333;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.section-subtitle {
    color: #999;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #ffd700;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 10px;
}

.product-link:hover {
    background-color: #ffd700;
    color: #0d0d0d;
}

.product-info {
    padding: 10px 10px 10px 10px;
}

.product-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.75rem;
}

.product-description {
    color: #999;
    font-size: 0.875rem;
    line-height: 1.6;
}

.products-cta {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #ffd700;
    color: #0d0d0d;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: rgba(255, 215, 0, 0.9);
    transform: translateY(-2px);
}

/* Industries Section */
.industries-section {
    background-color: #1a1a1a;
    padding: 4rem 0;
    border-bottom: 1px solid #333;
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.industry-card {
    background-color: #0d0d0d;
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.industry-icon {
    color: #ffd700;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.industry-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 1rem;
}

.industry-description {
    color: #999;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background-color: #0d0d0d;
    padding: 4rem 0;
    border-bottom: 1px solid #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-grid.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid.centered {
        grid-template-columns: none;
        display: flex;
    }
}

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

.contact-info.centered {
    flex-direction: row;
    align-items: start;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info.centered .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 0;
    flex: 1;
}

.contact-icon {
    color: #ffd700;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-info.centered .contact-icon {
    margin-top: 0;
}

.contact-info.centered .contact-icon svg {
    width: 32px;
    height: 32px;
}

.contact-details h3 {
    color: #ffd700;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info.centered .contact-details h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contact-details p {
    color: #999;
    font-size: 0.875rem;
    line-height: 1.6;
}

.contact-info.centered .contact-details p,
.contact-info.centered .contact-details a {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
}

.contact-form {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 2rem;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #ffd700;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #0d0d0d;
    border: 1px solid #333;
    border-radius: 0.25rem;
    padding: 0.75rem;
    color: white;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

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

.submit-button {
    background-color: #ffd700;
    color: #0d0d0d;
    border: none;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: rgba(255, 215, 0, 0.9);
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery-section {
    background-color: #1a1a1a;
    padding: 4rem 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid #333;
    color: #999;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #ffd700;
    color: #ffd700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content h3 {
    color: #ffd700;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-content p {
    color: #999;
    font-size: 0.875rem;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.modal-show {
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.modal-close:hover {
    color: #ffd700;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-info {
    text-align: center;
    margin-top: 1rem;
    color: #fff;
}

.modal-info h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-info p {
    color: #ccc;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .modal-close {
        top: -35px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    .modal-info h3 {
        font-size: 1.25rem;
    }
    
    .modal-info p {
        font-size: 0.9rem;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Contact Section Responsiveness */
.contact-section {
    padding: 2rem 1rem;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
}

.contact-icon {
    margin-bottom: 1rem;
}

/* Ensure flex-direction is column on mobile */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column !important;
    }
}