/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    width: 100%;
}
/* HEADER STYLES */

/* HEADER STYLES */
.main-header {
    background: #1a365d;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    border: none;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 125px;
}

/* Logo on Left */
.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 94px;
    width: 124px;
    display: block;
}

/* Navigation in Middle */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list > li {
    position: relative;
}

.nav-list a {
    color: white;
    text-decoration: none;
    padding: 8px 0;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-list a:hover {
    color: #63b3ed;
}

/* Quote Button on Right */
.quote-btn {
    flex: 0 0 auto;
    background: green;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.quote-btn:hover {
    background: navy;
}

/* Dropdown Styles */
.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    width: 500px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    padding: 20px;
    border-radius: 5px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown:hover .dropdown-content {
    display: flex;
    gap: 30px;
}

.dropdown-column {
    flex: 1;
}

.dropdown-column h4 {
    color: #1a365d;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.dropdown-column h4 a {
    color: #1a365d !important;
    padding: 0 !important;
    text-decoration: none;
}

.dropdown-column h4 a:hover {
    color: #3182ce !important;
}

.dropdown-column a {
    display: block;
    color: #333;
    padding: 6px 0;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.dropdown-column a:hover {
    color: #3182ce;
    padding-left: 5px;
}

.dropdown-column a:last-child {
    border-bottom: none;
}

.arrow-down {
    font-size: 10px;
    margin-left: 5px;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 4px;
    order: 3;
}

.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background: white;
    display: block;
    transition: 0.3s;
}

/* RESPONSIVE STYLES - HEADER */
@media (max-width: 992px) {
    .dropdown-content {
        width: 400px;
    }

    .nav-list {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        order: 3;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a365d;
        flex-direction: column;
        padding: 20px;
        display: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-top: 1px solid #2d3748;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: stretch;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #2d3748;
    }

    .nav-list a {
        display: block;
        padding: 15px 0;
        justify-content: space-between;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        background: #2d3748;
        display: none !important;
        margin-top: 0;
        padding: 15px;
        transform: none;
        left: 0;
        border-radius: 0;
        border-bottom: 1px solid #4a5568;
    }

    .dropdown.active .dropdown-content {
        display: flex !important;
        flex-direction: column;
        gap: 15px;
    }

    .dropdown-column h4 {
        color: white;
        margin-bottom: 10px;
    }

    .dropdown-column h4 a {
        color: white !important;
    }

    .dropdown-column a {
        color: #cbd5e0;
        border-bottom-color: #4a5568;
        padding: 8px 0;
    }

    /* Reorder items for mobile */
    .logo {
        order: 1;
    }

    .quote-btn {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
        padding: 8px 15px;
        font-size: 14px;
    }

    .mobile-toggle {
        order: 3;
    }

    .main-nav {
        order: 4;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .logo img {
        height: 64px;
    }

    .quote-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/*footer css*/

/* FOOTER STYLES */
.main-footer {
    background: #2d3748;
    color: white;
    padding: 40px 0 20px;
    width: 100%;
    margin-top: auto;
    border: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column img {
    height: 74px;
    width: 86px;
    margin-bottom: 10px;
}

.footer-column p {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-column h4 {
    color: #63b3ed;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul li {
    margin: 0;
}

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-column a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    font-size: 14px;
}

/* RESPONSIVE STYLES - FOOTER */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .main-footer {
        padding: 30px 0 15px;
    }

    .footer-bottom {
        padding: 15px 15px 0;
    }
}

/*about */
/* About Us Page Styles - Simplified Hero */
.about-hero {
    background: black;
    padding: 60px 0 40px;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-year {
    display: block;
    font-size: 1.1rem;
    color: #e53e3e;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a365d;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: #4a5568;
    font-style: italic;
    margin-top: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a365d;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e53e3e;
}

/* Leadership Section */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 10px;
}

.leadership-content h3 {
    font-size: 2.2rem;
    color: #1a365d;
    margin-bottom: 10px;
}

.position {
    color: #e53e3e;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-content {
    margin-bottom: 30px;
}

.bio-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5568;
    font-size: 1.1rem;
}

.signature {
    border-top: 2px solid #e2e8f0;
    padding-top: 20px;
    margin-top: 30px;
}

.signature-name {
    font-weight: 700;
    color: #1a365d;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.signature-title {
    color: #718096;
    font-style: italic;
}

/* Team Section */
.team-section {
    background: #f7fafc;
    padding: 10px 0;
    margin: 10px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-content h3 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 20px;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 10px;
}

.stat-label {
    color: #4a5568;
    font-size: 1rem;
    font-weight: 500;
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.story-content h3 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 20px;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5568;
    font-size: 1.1rem;
}

/* Common Image Styles */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.03);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 54, 93, 0.9);
    color: white;
    padding: 15px;
    font-size: 0.9rem;
    text-align: center;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    color: white;
}

.values-section .section-header h2 {
    color: white;
}

.values-section .section-header h2::after {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .leadership-grid,
    .team-grid,
    .story-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 40px 0 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .leadership-grid,
    .team-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-section {
        padding: 60px 0;
    }

    .leadership-content h3,
    .team-content h3,
    .story-content h3 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 40px auto 0;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Make images full width on mobile */
    .image-container img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 30px 0 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .image-caption {
        font-size: 0.8rem;
        padding: 10px;
    }
}

/* Materials Page Styles */

/* Materials Page Styles */
.materials-hero {
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.8)),
        url("https://images.unsplash.com/photo-1580742011651-999c5d4e20c8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #63b3ed;
    font-weight: 300;
}

.intro-section {
    padding: 60px 0;
    background: #f8fafc;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
}

/* Materials Grid - Side by Side */
.materials-grid-section {
    padding: 40px 0 80px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.material-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #e53e3e;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.material-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.material-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #1a365d;
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.material-name {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 5px;
    font-weight: 700;
}

.material-fullname {
    font-size: 1.1rem;
    color: #e53e3e;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.material-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.material-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
    flex: 1;
}

.material-specs {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-top: auto;
}

.spec-item {
    margin-bottom: 12px;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    display: block;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.spec-value {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.9rem;
    display: block;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    color: white;
    text-align: center;
}

.benefits-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.benefits-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Radial Section */
.radial-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e53e3e;
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.radial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.radial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #1a365d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.radial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.radial-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.radial-header h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 5px;
}

.radial-fullname {
    color: #e53e3e;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.radial-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.radial-specs {
    background: #f7fafc;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: #1a365d;
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    background: #e53e3e;
    color: white;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background: #c53030;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .materials-grid {
        gap: 25px;
    }

    .material-card {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .radial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .materials-hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .intro-section,
    .materials-grid-section,
    .benefits-section,
    .radial-section,
    .cta-section {
        padding: 60px 0;
    }

    .materials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .radial-grid {
        grid-template-columns: 1fr;
    }

    .material-card {
        padding: 30px;
    }

    .material-name {
        font-size: 1.8rem;
    }

    .material-fullname {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefits-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .material-card {
        padding: 25px 20px;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .material-number {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

/* Headsails Page Styles */
/* ============================================
   HEADSALES PAGE STYLES
   ============================================ */

/* Headsails Page Styles */
.headsails-hero {
    background: grey;
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #63b3ed;
    font-weight: 400;
}

/* Intro Section */
.intro-section {
    padding: 40px 0;
    background: #f8fafc;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.text-link {
    color: #e53e3e;
    text-decoration: none;
    font-weight: 600;
}

.text-link:hover {
    text-decoration: underline;
}

/* Standards Section */
.standards-section {
    padding: 60px 0;
}

.section-title {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 40px;
    text-align: center;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.standard-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #e53e3e;
}

.standard-item h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 15px;
}

.standard-item p {
    color: #4a5568;
    line-height: 1.6;
}

.standard-notes {
    background: #f7fafc;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #63b3ed;
}

.standard-notes p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.standard-notes p:last-child {
    margin-bottom: 0;
}

/* Premium Offer Section */
.premium-offer-section {
    padding: 60px 0;
    background: #f8fafc;
}

.premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.premium-header h2 {
    font-size: 2rem;
    color: #1a365d;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.premium-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e53e3e;
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.premium-text {
    padding-right: 20px;
}

.premium-features {
    list-style: none;
    padding: 0;
}

.premium-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

.premium-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #e53e3e;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Image Grid Styles - Fixed 450px Height */
.premium-images,
.customization-images {
    position: sticky;
    top: 100px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.image-item {
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: none;
    background: transparent;
    height: 250px; /* Fixed height */
}

.image-item:hover {
    transform: scale(1.03);
}

.headsail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: 6px;
    transition: opacity 0.3s ease;
}

.headsail-img:hover {
    opacity: 0.9;
}

/* Customization Section */
.customization-section {
    padding: 60px 0;
}

.customization-header {
    text-align: center;
    margin-bottom: 50px;
}

.customization-header h2 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 15px;
}

.customization-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

.customization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.customization-text {
    padding-right: 20px;
}

.customization-list {
    list-style: none;
    padding: 0;
    /* Remove max-height and overflow-y */
    padding-right: 15px;
}

/* Custom scrollbar for customization list */
/* .customization-list::-webkit-scrollbar {
    width: 6px;
}

.customization-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.customization-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.customization-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
} */

.customization-list {
    list-style: none;
    padding: 0;
    padding-right: 15px;
}

.customization-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
    padding-right: 10px;
}

.customization-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-size: 1.5rem;
    line-height: 1;
}

.customization-list li strong {
    color: #1a365d;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #1a365d;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background: #e53e3e;
    color: white;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #c53030;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1100px) {
    .premium-content,
    .customization-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .premium-content,
    .customization-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .premium-text,
    .customization-text {
        padding-right: 0;
    }

    .premium-images,
    .customization-images {
        position: static;
    }

    .images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .image-item {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .headsails-hero {
        padding: 50px 0 30px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .intro-section,
    .standards-section,
    .premium-offer-section,
    .customization-section {
        padding: 50px 0;
    }

    .section-title,
    .premium-header h2,
    .customization-header h2 {
        font-size: 1.8rem;
    }

    .standards-grid {
        grid-template-columns: 1fr;
    }

    .images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .image-item {
        height: 350px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .customization-list {
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
        margin: 0 auto;
    }

    .image-item {
        height: 400px;
        max-width: 450px;
        margin: 0 auto;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .premium-features li,
    .customization-list li {
        font-size: 0.95rem;
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .image-item {
        height: 350px;
        max-width: 100%;
    }

    .images-grid {
        max-width: 100%;
    }
}

/* Optional: Image Loading States */
.image-item {
    position: relative;
    background: #f5f5f5;
}

.headsail-img.loading {
    opacity: 0;
}

.headsail-img.loaded {
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Optional: Image Captions */
.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    font-size: 0.9rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-item:hover .image-caption {
    opacity: 1;
}

/* ============================================
   MAINSALES PAGE STYLES
   ============================================ */
/* Mainsails Page Styles */
/* ============================================
   MAINSAILS PAGE - COMPLETE RESPONSIVE CSS
   ============================================ */

/* ============================================
   MAINSAILS PAGE - COMPLETE FIXED CSS
   ============================================ */

/* RESET & BASE STYLES */
* {
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* HERO SECTION */
.mainsails-hero {
    background: grey;
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.mainsails-hero .hero-title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.3;
}

.mainsails-hero .hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    color: #63b3ed;
    font-weight: 400;
}

/* INTRO SECTION */
.intro-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
}

.text-link {
    color: #e53e3e;
    font-weight: 600;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

/* TYPES SECTION */
.types-section {
    padding: 60px 0;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    color: #1a365d;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.type-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #e53e3e;
    text-align: center;
    transition: transform 0.3s ease;
}

.type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.type-item h3 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    color: #1a365d;
    margin-bottom: 15px;
}

.type-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* ============================================
   PREMIUM OFFER SECTION
   ============================================ */
.premium-offer-section {
    padding: 60px 0;
    background: #f8fafc;
}

.premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.premium-header h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: #1a365d;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.premium-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e53e3e;
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.premium-text {
    padding-right: 20px;
}

.premium-features {
    list-style: none;
    padding: 0;
}

.premium-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.6;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.premium-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #e53e3e;
    font-weight: bold;
    font-size: 1.2rem;
}

/* PREMIUM IMAGES GRID */
.premium-images {
    background: transparent;
    padding: 0;
}

.premium-images .images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.premium-images .image-item {
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: #f5f5f5;
    position: relative;
    padding-bottom: 100%; /* Square aspect ratio */
    height: 0;
}

.premium-images .sail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: opacity 0.3s ease;
}

.premium-images .image-item:hover {
    transform: scale(1.03);
}

.premium-images .sail-img:hover {
    opacity: 0.9;
}

/* ============================================
   CUSTOMIZATION SECTION - FIXED FOR LONG TEXT
   ============================================ */
.customization-section {
    padding: 60px 0;
}

.customization-header {
    text-align: center;
    margin-bottom: 50px;
}

.customization-header h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: #1a365d;
    margin-bottom: 15px;
}

.customization-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: #4a5568;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.6;
}

/* FIXED: Customization content layout */
.customization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* FIXED: Customization text with scroll for long content */
.customization-text {
    padding-right: 20px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom scrollbar for text */
.customization-text::-webkit-scrollbar {
    width: 6px;
}

.customization-text::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.customization-text::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.customization-text::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.customization-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.customization-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.5;
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}

.customization-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.customization-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-size: 1.5rem;
    line-height: 1;
    top: 0;
}

.customization-list li strong {
    color: #1a365d;
    display: inline-block;
    margin-bottom: 3px;
}

/* FIXED: Customization images - sticky on desktop */
.customization-images {
    background: transparent;
    padding: 0;
    position: sticky;
    top: 100px;
    align-self: start;
}

.customization-images .images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.customization-images .image-item {
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: #f5f5f5;
    position: relative;
    padding-bottom: 100%; /* Square aspect ratio */
    height: 0;
}

.customization-images .sail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: opacity 0.3s ease;
}

.customization-images .image-item:hover {
    transform: scale(1.03);
}

.customization-images .sail-img:hover {
    opacity: 0.9;
}

/* CTA SECTION */
.cta-section {
    padding: 80px 0;
    background: #1a365d;
    color: white;
    text-align: center;
}

.cta-section .cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 20px;
    color: white;
}

.cta-section .cta-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    transition: all 0.3s;
    border: 2px solid transparent;
    text-align: center;
}

.cta-btn.primary {
    background: #e53e3e;
    color: white;
}

.cta-btn.primary:hover {
    background: #c53030;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE BREAKPOINTS - FIXED FOR BOTH SECTIONS
   ============================================ */

/* Tablet & Small Desktop */
@media (max-width: 1024px) {
    .premium-content,
    .customization-content {
        gap: 30px;
    }

    .premium-images .images-grid,
    .customization-images .images-grid {
        gap: 12px;
    }
}

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* BOTH SECTIONS: Switch to single column */
    .premium-content,
    .customization-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .premium-text,
    .customization-text {
        padding-right: 0;
    }

    /* FIXED: Customization text - remove scroll on tablet */
    .customization-text {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
        order: 2; /* Text below images */
    }

    /* FIXED: Customization images - remove sticky, move above text */
    .customization-images {
        position: static;
        order: 1; /* Images above text */
        margin-bottom: 30px;
    }

    /* BOTH SECTIONS: Keep 3 columns on tablet */
    .premium-images .images-grid,
    .customization-images .images-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile Large (768px and below) */
@media (max-width: 768px) {
    .mainsails-hero {
        padding: 40px 0 30px;
    }

    .mainsails-hero .hero-title {
        font-size: 1.8rem;
    }

    .mainsails-hero .hero-subtitle {
        font-size: 1.5rem;
    }

    .types-section,
    .premium-offer-section,
    .customization-section {
        padding: 50px 0;
    }

    .types-section .section-title,
    .premium-header h2,
    .customization-header h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .types-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    /* BOTH SECTIONS: Switch to 2 columns */
    .premium-images .images-grid,
    .customization-images .images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    /* FIXED: Customization list - improve mobile readability */
    .customization-list li {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 15px;
        padding-left: 22px;
        background: #f9f9f9;
        padding: 12px 15px 12px 35px;
        border-radius: 6px;
        border-left: 3px solid #e53e3e;
    }

    .customization-list li:before {
        left: 15px;
    }

    .customization-list li strong {
        display: block;
        margin-bottom: 5px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Mobile Medium (576px and below) */
@media (max-width: 576px) {
    .mainsails-hero .hero-title {
        font-size: 1.6rem;
    }

    .mainsails-hero .hero-subtitle {
        font-size: 1.3rem;
    }

    /* BOTH SECTIONS: Switch to 1 column */
    .premium-images .images-grid,
    .customization-images .images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .premium-images .image-item,
    .customization-images .image-item {
        padding-bottom: 75%; /* 4:3 aspect ratio */
        max-width: 100%;
        margin: 0 auto;
    }

    .premium-features li,
    .customization-list li {
        font-size: 0.95rem;
        padding-left: 25px;
        margin-bottom: 15px;
    }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .mainsails-hero .hero-title {
        font-size: 1.5rem;
    }

    .mainsails-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .type-item {
        padding: 20px 15px;
    }

    /* BOTH SECTIONS: Adjust aspect ratio */
    .premium-images .image-item,
    .customization-images .image-item {
        padding-bottom: 66.67%; /* 3:2 aspect ratio */
    }

    .premium-content,
    .customization-content {
        padding: 0 15px;
    }

    .premium-features li,
    .customization-list li {
        font-size: 0.9rem;
        padding-left: 20px;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .mainsails-hero {
        padding: 30px 0 20px;
    }

    .mainsails-hero .hero-title {
        font-size: 1.4rem;
    }

    .mainsails-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .types-section,
    .premium-offer-section,
    .customization-section {
        padding: 40px 0;
    }

    .premium-header h2,
    .customization-header h2 {
        font-size: 1.4rem;
    }

    .premium-images .images-grid,
    .customization-images .images-grid {
        gap: 12px;
    }

    .customization-list li {
        font-size: 0.8rem;
        padding-left: 18px;
        padding: 10px 12px 10px 28px;
    }

    .customization-list li:before {
        font-size: 1.2rem;
        left: 12px;
    }
}

/* ============================================
   SPECIAL FIXES FOR CUSTOMIZATION LONG TEXT
   ============================================ */

/* Target specific long list items in Customization */
.customization-list li:nth-child(1) {
    line-height: 1.4;
    margin-bottom: 20px;
}

.customization-list li:nth-child(15) {
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Image loading states */
.sail-img.loading {
    opacity: 0;
}

.sail-img.loaded {
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Image captions */
.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    font-size: 0.9rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-item:hover .image-caption {
    opacity: 1;
}

/* ============================================
   EMERGENCY FIXES - FORCE RESPONSIVENESS
   ============================================ */

/* Force images to always be responsive */
.sail-img {
    max-width: 100% !important;
    height: auto !important;
}

/* Nuclear option for Customization on very small screens */
@media (max-width: 400px) {
    .customization-content {
        display: block !important;
    }

    .customization-text,
    .customization-images {
        width: 100% !important;
        float: none !important;
        display: block !important;
        margin-bottom: 30px !important;
    }

    .customization-images .images-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    .customization-images .image-item {
        flex: 0 0 calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
        padding-bottom: calc(50% - 10px) !important;
    }
}

/* Other pages styles */
.downwind-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.coming-soon h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #1a365d;
    text-align: center;
    font-weight: 700;
}

@media (max-width: 768px) {
    .coming-soon h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .coming-soon h1 {
        font-size: 2rem;
    }
}
/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
/* ============================================
   CONTACT PAGE STYLES (UNIQUE CLASSES)
   ============================================ */

/* Contact Hero */
.contact-page-hero {
    background: grey;
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

/* Contact Section */
.contact-page-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Information */
.contact-page-info {
    padding-right: 20px;
}

.contact-page-heading {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e53e3e;
    display: inline-block;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #e53e3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content h3 {
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-info-content p:last-child {
    margin-bottom: 0;
}

/* Contact Form */
.contact-page-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-group {
    margin-bottom: 25px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a365d;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-optional {
    color: #718096;
    font-size: 0.85rem;
    font-weight: normal;
}

.contact-required {
    color: #e53e3e;
    font-weight: 600;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    color: #4a5568;
    transition: all 0.3s ease;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: #1a365d;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #a0aec0;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-submit {
    margin-top: 30px;
}

.contact-submit-btn {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-submit-btn:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN FOR CONTACT PAGE
   ============================================ */

@media (max-width: 992px) {
    .contact-page-grid {
        gap: 40px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .contact-page-hero {
        padding: 60px 0 40px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-page-section {
        padding: 60px 0;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-page-form {
        padding: 30px;
    }

    .contact-info-item {
        padding: 20px;
    }

    .contact-page-info {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-page-form {
        padding: 25px 20px;
    }

    .contact-page-heading {
        font-size: 1.8rem;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-submit-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* ============================================
   QUOTE PAGE STYLES
   ============================================ */
/* ============================================
   QUOTE PAGE STYLES
   ============================================ */
/* ============================================
   QUOTE PAGE STYLES (UNIQUE CLASSES)
   ============================================ */

/* Quote Hero */
.quote-page-hero {
    background: #1a365d;
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.quote-hero-subtitle {
    font-size: 1.5rem;
    color: #63b3ed;
    font-weight: 300;
}

/* Quote Section */
.quote-page-section {
    padding: 60px 0 100px;
    background: #f8fafc;
}

/* Quote Form */
.quote-page-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Form Sections */
.quote-form-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e2e8f0;
}

.quote-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.quote-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.quote-section-number {
    width: 40px;
    height: 40px;
    background: #1a365d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.quote-section-header h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin: 0;
    font-weight: 600;
}

/* Form Elements */
.quote-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.quote-form-group {
    margin-bottom: 25px;
}

.quote-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a365d;
    font-weight: 500;
    font-size: 0.95rem;
}

.quote-optional {
    color: #718096;
    font-size: 0.85rem;
    font-weight: normal;
}

.quote-required {
    color: #e53e3e;
    font-weight: 600;
}

.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    color: #4a5568;
    background: white;
    transition: all 0.3s ease;
}

.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
    outline: none;
    border-color: #1a365d;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.quote-form-group input::placeholder,
.quote-form-group textarea::placeholder {
    color: #a0aec0;
}

.quote-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a5568'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.quote-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* File Upload */
.quote-file-upload {
    margin-top: 10px;
}

.quote-upload-area {
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    background: #f7fafc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-upload-area:hover {
    border-color: #1a365d;
    background: #edf2f7;
}

.quote-upload-area svg {
    width: 50px;
    height: 50px;
    color: #a0aec0;
    margin-bottom: 15px;
}

.quote-upload-text {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 5px;
}

.quote-upload-subtext {
    font-size: 0.9rem;
    color: #718096;
}

.quote-file-list {
    margin-top: 15px;
}

.quote-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 8px;
}

.quote-file-name {
    color: #4a5568;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    margin-right: 10px;
}

.quote-file-remove {
    color: #e53e3e;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 5px;
}

/* Submit Button */
.quote-form-submit {
    text-align: center;
    margin-top: 40px;
}

.quote-submit-btn {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.quote-submit-btn:hover {
    background: #c53030;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(229, 62, 62, 0.3);
}

.quote-submit-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.quote-submit-btn:hover svg {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE DESIGN FOR QUOTE PAGE
   ============================================ */

@media (max-width: 768px) {
    .quote-page-hero {
        padding: 60px 0 40px;
    }

    .quote-hero-title {
        font-size: 2.5rem;
    }

    .quote-hero-subtitle {
        font-size: 1.3rem;
    }

    .quote-page-section {
        padding: 40px 0 60px;
    }

    .quote-page-form {
        padding: 30px;
    }

    .quote-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quote-section-header h3 {
        font-size: 1.3rem;
    }

    .quote-submit-btn {
        width: 100%;
        padding: 16px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .quote-hero-title {
        font-size: 2rem;
    }

    .quote-hero-subtitle {
        font-size: 1.1rem;
    }

    .quote-page-form {
        padding: 25px 20px;
    }

    .quote-section-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ============================================
   HOME PAGE STYLES
   ============================================ */
/* ============================================
   HOME PAGE STYLES
   ============================================ */
/* ============================================
   HOMEPAGE STYLES (ALL UNIQUE CLASS NAMES)
   ============================================ */
/* ============================================
   HOMEPAGE STYLES (ALL UNIQUE CLASS NAMES)
   ============================================ */
/* ============================================
   GLOBAL STYLES & CONTAINER
   ============================================ */

/* Container for all sections */
.homepage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO SLIDER SECTION
   ============================================ */

/* Main slider container */
.homepage-hero-slider {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

/* Slider wrapper for positioning */
.homepage-slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Slider inner container */
.homepage-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Slider track that holds all slides */
.homepage-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

/* Individual slides - FIXED: Each takes full width */
.homepage-slide {
    flex: 0 0 100%;
    min-width: 100%;
    position: relative;
    height: 100%;
}

/* Slide images */
.homepage-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text overlay on slides */
.homepage-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 60px 40px 40px;
    text-align: center;
    z-index: 2;
}

.homepage-slide-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.homepage-slide-overlay p {
    font-size: 1.5rem;
    color: #63b3ed;
    font-weight: 300;
}

/* Slider navigation buttons */
.homepage-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.homepage-slider-btn:hover {
    background: rgba(229, 62, 62, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.homepage-slider-prev {
    left: 30px;
}

.homepage-slider-next {
    right: 30px;
}

/* Slider dots navigation */
.homepage-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.homepage-slider-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.homepage-slider-dots span.active {
    background: white;
}

/* Hide controls when only 1 slide */
.homepage-slider-container.single-slide .homepage-slider-btn,
.homepage-slider-container.single-slide .homepage-slider-dots {
    display: none;
}

/* ============================================
   THREE ROWS SECTION
   ============================================ */

.homepage-three-rows {
    padding: 30px 0;
    background: #f8fafc;
}

/* Grid layout for three columns */
.homepage-three-rows-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Image rows (first two columns) */
.homepage-image-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Individual image columns */
.homepage-image-col {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.homepage-image-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.homepage-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.homepage-image-col:hover img {
    transform: scale(1.05);
}

/* Image overlay (optional) */
.homepage-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    text-align: center;
}

.homepage-image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #fff;
}

.homepage-image-overlay p {
    color: #63b3ed;
    font-size: 0.95rem;
}

/* Text column (third column) */
.homepage-text-row {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.homepage-text-content {
    width: 100%;
}

/* Vision title with underline */
.homepage-vision-title {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.homepage-vision-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #e53e3e;
}

/* Vision lead paragraph */
.homepage-vision-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Vision points with arrow indicators */
.homepage-vision-points p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.homepage-vision-points p::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   CRAFTING SAILS SECTION
   ============================================ */

.homepage-crafting-section {
    padding: 10px 0;
    background: white;
}

/* Two-column grid layout */
.homepage-crafting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Content column */
.homepage-crafting-content {
    padding-right: 40px;
}

/* Title with underline */
.homepage-crafting-title {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.homepage-crafting-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #e53e3e;
}

/* Content text */
.homepage-crafting-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
}

/* Final paragraph with emphasis */
.homepage-crafting-final {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #1a365d !important;
    font-style: italic;
    margin-top: 30px !important;
}

/* Image column */
.homepage-crafting-image {
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.homepage-crafting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   RESPONSIVE DESIGN - DESKTOP FIRST
   ============================================ */

/* Large Desktop (1200px and below) */
@media (max-width: 1200px) {
    /* Slider overlay text */
    .homepage-slide-overlay h1 {
        font-size: 3rem;
    }
    .homepage-slide-overlay p {
        font-size: 1.3rem;
    }

    /* Three rows section */
    .homepage-three-rows-grid {
        gap: 25px;
    }
    .homepage-image-col {
        height: 280px;
    }

    /* Crafting section */
    .homepage-crafting-image {
        height: 500px;
    }
}

/* Tablet Landscape (992px and below) */
@media (max-width: 992px) {
    /* Slider */
    .homepage-hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    /* Three rows - change to single column */
    .homepage-three-rows-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .homepage-image-row {
        flex-direction: row;
        gap: 20px;
    }
    .homepage-image-col {
        flex: 1;
        height: 250px;
    }
    .homepage-text-row {
        padding: 40px;
    }
    .homepage-vision-title {
        font-size: 2.2rem;
        text-align: center;
    }
    .homepage-vision-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Crafting section - change to single column */
    .homepage-crafting-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .homepage-crafting-image {
        height: 400px;
        order: -1; /* Move image above text on mobile */
    }
    .homepage-crafting-content {
        padding-right: 0;
    }
    .homepage-crafting-title {
        font-size: 2.2rem;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    /* Slider */
    .homepage-hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    .homepage-slide-overlay {
        padding: 40px 20px 30px;
    }
    .homepage-slide-overlay h1 {
        font-size: 2.5rem;
    }
    .homepage-slide-overlay p {
        font-size: 1.2rem;
    }
    .homepage-slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Three rows */
    .homepage-three-rows {
        padding: 70px 0;
    }
    .homepage-image-row {
        flex-direction: column;
        gap: 20px;
    }
    .homepage-image-col {
        height: 220px;
    }
    .homepage-text-row {
        padding: 30px;
    }
    .homepage-vision-title {
        font-size: 1.8rem;
    }
    .homepage-vision-lead {
        font-size: 1.05rem;
    }

    /* Crafting section */
    .homepage-crafting-section {
        padding: 70px 0;
    }
    .homepage-crafting-image {
        height: 350px;
    }
    .homepage-crafting-title {
        font-size: 2rem;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    /* Slider */
    .homepage-hero-slider {
        height: 50vh;
        min-height: 350px;
    }
    .homepage-slide-overlay h1 {
        font-size: 2rem;
    }
    .homepage-slide-overlay p {
        font-size: 1.1rem;
    }
    .homepage-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .homepage-slider-prev {
        left: 15px;
    }
    .homepage-slider-next {
        right: 15px;
    }

    /* Three rows */
    .homepage-image-col {
        height: 200px;
    }
    .homepage-image-overlay {
        padding: 20px;
    }
    .homepage-image-overlay h3 {
        font-size: 1.5rem;
    }
    .homepage-text-row {
        padding: 25px 20px;
    }
    .homepage-vision-title {
        font-size: 1.6rem;
    }
    .homepage-vision-points p {
        padding-left: 20px;
        font-size: 0.95rem;
    }

    /* Crafting section */
    .homepage-crafting-image {
        height: 300px;
    }
    .homepage-crafting-title {
        font-size: 1.8rem;
    }
    .homepage-crafting-text p {
        font-size: 1rem;
    }
}
