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

:root {
    --navy-blue: #1a3a5c;
    --navy-dark: #0f2438;
    --bright-red: #c41e3a;
    --red-dark: #9b1830;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f1f3f5;
    --medium-gray: #6c757d;
    --dark-gray: #212529;
    --border-gray: #dee2e6;
    --accent-blue: #2c5282;
    --text-body: #495057;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* SVG Icons */
.icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 3px solid var(--bright-red);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.top-bar-item:hover {
    color: var(--white);
}

.top-bar .icon {
    stroke: var(--bright-red);
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--navy-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-star {
    color: var(--bright-red);
    font-size: 20px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-gray);
    position: relative;
    padding: 5px 0;
}

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

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

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

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--navy-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.nav-btn-mobile {
    display: none !important;
}

.nav-btn-desktop {
    display: inline-flex;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--bright-red);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(196, 30, 58, 0.4);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--navy-blue);
}

.btn-nav {
    background: var(--navy-blue);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
}

.btn-nav:hover {
    background: var(--bright-red);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-icon, .btn-icon-right {
    width: 18px;
    height: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='120' viewBox='0 0 200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='200' height='120' fill='%23ffffff' fill-opacity='0.03'/%3E%3Cg fill='%23c41e3a' fill-opacity='0.12'%3E%3Crect y='0' width='200' height='9'/%3E%3Crect y='18' width='200' height='9'/%3E%3Crect y='36' width='200' height='9'/%3E%3Crect y='54' width='200' height='9'/%3E%3Crect y='72' width='200' height='9'/%3E%3Crect y='90' width='200' height='9'/%3E%3Crect y='108' width='200' height='9'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Crect x='0' y='0' width='80' height='54'/%3E%3C/g%3E%3Cg fill='%23c41e3a' fill-opacity='0.18'%3E%3Ccircle cx='10' cy='9' r='2'/%3E%3Ccircle cx='25' cy='9' r='2'/%3E%3Ccircle cx='40' cy='9' r='2'/%3E%3Ccircle cx='55' cy='9' r='2'/%3E%3Ccircle cx='70' cy='9' r='2'/%3E%3Ccircle cx='10' cy='22' r='2'/%3E%3Ccircle cx='25' cy='22' r='2'/%3E%3Ccircle cx='40' cy='22' r='2'/%3E%3Ccircle cx='55' cy='22' r='2'/%3E%3Ccircle cx='70' cy='22' r='2'/%3E%3Ccircle cx='17' cy='15' r='2'/%3E%3Ccircle cx='32' cy='15' r='2'/%3E%3Ccircle cx='47' cy='15' r='2'/%3E%3Ccircle cx='62' cy='15' r='2'/%3E%3Ccircle cx='10' cy='35' r='2'/%3E%3Ccircle cx='25' cy='35' r='2'/%3E%3Ccircle cx='40' cy='35' r='2'/%3E%3Ccircle cx='55' cy='35' r='2'/%3E%3Ccircle cx='70' cy='35' r='2'/%3E%3Ccircle cx='17' cy='28' r='2'/%3E%3Ccircle cx='32' cy='28' r='2'/%3E%3Ccircle cx='47' cy='28' r='2'/%3E%3Ccircle cx='62' cy='28' r='2'/%3E%3Ccircle cx='17' cy='42' r='2'/%3E%3Ccircle cx='32' cy='42' r='2'/%3E%3Ccircle cx='47' cy='42' r='2'/%3E%3Ccircle cx='62' cy='42' r='2'/%3E%3Ccircle cx='10' cy='48' r='2'/%3E%3Ccircle cx='25' cy='48' r='2'/%3E%3Ccircle cx='40' cy='48' r='2'/%3E%3Ccircle cx='55' cy='48' r='2'/%3E%3Ccircle cx='70' cy='48' r='2'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    margin-bottom: 24px;
}

.badge-patriot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 30, 58, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(196, 30, 58, 0.4);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 540px;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 500;
}

.feature-icon {
    width: 20px;
    height: 20px;
    stroke: var(--bright-red);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Patriot Card */
.hero-patriot {
    display: flex;
    justify-content: center;
}

.patriot-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    max-width: 320px;
}

.patriot-header {
    margin-bottom: 20px;
}

.patriot-flag {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.patriot-header h3 {
    color: var(--white);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.patriot-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--bright-red);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.patriot-subtext {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    background: rgba(196, 30, 58, 0.1);
    color: var(--bright-red);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.section-header p {
    font-size: 18px;
    color: var(--medium-gray);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--bright-red);
}

.feature-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.1) 0%, rgba(26, 58, 92, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon-wrap svg {
    width: 32px;
    height: 32px;
    stroke: var(--navy-blue);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.feature-card p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--bright-red);
}

.service-image {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--accent-blue) 100%);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.service-icon-large {
    font-size: 64px;
    position: relative;
    z-index: 1;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.service-content p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--bright-red);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover {
    color: var(--red-dark);
    gap: 8px;
}

.services-note {
    max-width: 800px;
    margin: 0 auto;
}

.note-box {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.05) 0%, rgba(26, 58, 92, 0.02) 100%);
    border-left: 4px solid var(--bright-red);
    padding: 30px;
    border-radius: var(--radius-sm);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.note-icon {
    width: 40px;
    height: 40px;
    stroke: var(--bright-red);
    flex-shrink: 0;
}

.note-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.note-content p {
    font-size: 15px;
    color: var(--medium-gray);
    margin: 0;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-label {
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about-lead {
    font-size: 20px;
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

.about-content p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

.patriot-statement {
    margin: 30px 0;
}

.patriot-box {
    background: linear-gradient(135deg, var(--bright-red) 0%, var(--red-dark) 100%);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 20px;
    align-items: center;
}

.patriot-flag-large {
    font-size: 48px;
}

.patriot-box-content h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.patriot-tagline-large {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-contact {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail svg {
    width: 24px;
    height: 24px;
    stroke: var(--bright-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.contact-detail span, .contact-detail a {
    color: var(--medium-gray);
    font-size: 15px;
}

.contact-detail a:hover {
    color: var(--bright-red);
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--accent-blue) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.placeholder-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.placeholder-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 16px;
}

.placeholder-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.placeholder-sub {
    font-size: 16px;
    opacity: 0.8;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--bright-red);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--bright-red);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--bright-red);
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--bright-red);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 24px;
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-dark) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info .section-label {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-lead {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(196, 30, 58, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--bright-red);
}

.method-content h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 6px;
}

.method-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.method-link:hover {
    color: var(--bright-red);
}

.method-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.method-text {
    font-size: 16px;
    color: var(--white);
    line-height: 1.5;
}

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.form-card > p {
    font-size: 15px;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--dark-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236c757d' 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 12px center;
    background-size: 20px;
    padding-right: 40px;
}

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

.form-status {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 28px;
}

.footer-logo .logo-star {
    font-size: 22px;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--bright-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--bright-red);
    transform: translateY(-3px);
}

.social-link:hover svg {
    fill: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--bright-red);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255,255,255,0.9);
}

.footer-contact a:hover {
    color: var(--bright-red);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-patriot {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-wrapper {
        flex-wrap: wrap;
        height: auto;
        padding: 15px 0;
        position: relative;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-gray);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-gray);
    }
    
    .nav-link:last-of-type {
        border-bottom: none;
    }
    
    .nav-btn-mobile {
        display: inline-flex !important;
        margin-top: 15px;
    }
    
    .nav-btn-desktop {
        display: none !important;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .patriot-box {
        flex-direction: column;
        text-align: center;
    }
    
    .note-box {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .form-card {
        padding: 24px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}