/* US Transceivers - Pages Stylesheet */

/* Site Main Spacing - Breathing room from header */
.site-main {
    margin-top: 40px;
    margin-bottom: 60px;
}

.woocommerce-page .site-main {
    margin-top: 35px;
}

/* ========================================
   PAGE HERO SECTION
   Beautiful hero banner for all CMS pages
   ======================================== */

.page-hero {
    background: linear-gradient(135deg, #304b92 0%, #1a2d5e 100%);
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Decorative Shapes */
.page-hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: #ea272f;
    top: -150px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: #ffffff;
    bottom: -100px;
    left: -80px;
}

/* ========================================
   PAGE CONTENT WRAPPER
   ======================================== */

.page-content-wrapper {
    padding: 60px 20px;
    background: #ffffff;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

/* Page Article Styling */
.page-article {
    background: transparent;
}

.page-article .entry-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #374151;
}

/* ========================================
   PAGE CTA SECTION
   ======================================== */

.page-cta-section {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e2e8f0;
}

.page-cta-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #304b92;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-cta-content p {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0 0 30px 0;
}

.page-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-cta-buttons .btn i {
    font-size: 1rem;
}

.page-cta-buttons .btn-primary {
    background: linear-gradient(135deg, #ea272f 0%, #c21f26 100%);
    color: #ffffff;
}

.page-cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(234, 39, 47, 0.3);
}

.page-cta-buttons .btn-secondary {
    background: linear-gradient(135deg, #304b92 0%, #243a75 100%);
    color: #ffffff;
}

.page-cta-buttons .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(48, 75, 146, 0.3);
}

/* ========================================
   CMS PAGE ENHANCED STYLING
   For About Us, Refund & Returns, etc.
   ======================================== */

.page-full-width .cms-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Page Title with Decorative Underline (for old templates) */
.cms-page-content .entry-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 3rem;
    color: var(--primary-blue, #304b92);
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 25px;
}

.cms-page-content .entry-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ea272f 0%, #304b92 100%);
    border-radius: 2px;
}

/* ========================================
   ENTRY CONTENT STYLING
   Enhanced typography for CMS page content
   Only applies to .page-article (CMS pages)
   NOT WooCommerce pages (cart, checkout, etc.)
   ======================================== */

/* Entry Content Base - CMS Pages Only */
.page-article .entry-content,
.cms-page-content .entry-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #374151;
}

/* Paragraphs */
.page-article .entry-content p,
.cms-page-content .entry-content p {
    margin-bottom: 25px;
}

/* First paragraph - Lead text style */
.page-article .entry-content > p:first-of-type,
.cms-page-content .entry-content p:first-of-type {
    font-size: 1.25rem;
    color: #1f2937;
    line-height: 1.8;
    font-weight: 400;
}

/* Headings */
.page-article .entry-content h2,
.cms-page-content .entry-content h2 {
    font-family: 'Oswald', sans-serif;
    color: #304b92;
    margin-top: 50px;
    margin-bottom: 25px;
    font-size: 1.8rem;
    padding-bottom: 15px;
    border-bottom: 3px solid #e5e7eb;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-article .entry-content h2:first-child,
.cms-page-content .entry-content h2:first-child {
    margin-top: 0;
}

.page-article .entry-content h2::before,
.cms-page-content .entry-content h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ea272f;
}

.page-article .entry-content h3,
.cms-page-content .entry-content h3 {
    font-family: 'Oswald', sans-serif;
    color: #ea272f;
    margin-top: 40px;
    margin-bottom: 18px;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-article .entry-content h3::before,
.cms-page-content .entry-content h3::before {
    content: '';
    width: 5px;
    height: 22px;
    background: linear-gradient(180deg, #304b92 0%, #ea272f 100%);
    border-radius: 3px;
    flex-shrink: 0;
}

.page-article .entry-content h4,
.cms-page-content .entry-content h4 {
    color: #1f2937;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.15rem;
    font-weight: 600;
}

/* Images */
.page-article .entry-content img,
.cms-page-content .entry-content img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    margin: 35px 0;
    max-width: 100%;
    height: auto;
}

/* Blockquotes - Styled as Highlight Box */
.page-article .entry-content blockquote,
.cms-page-content .entry-content blockquote {
    border: none;
    border-left: 5px solid #304b92;
    padding: 30px 35px;
    background: linear-gradient(135deg, #f0f4ff 0%, #f9fafb 100%);
    margin: 40px 0;
    font-style: normal;
    color: #374151;
    border-radius: 0 12px 12px 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(48, 75, 146, 0.08);
}

.page-article .entry-content blockquote::before,
.cms-page-content .entry-content blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: rgba(48, 75, 146, 0.1);
}

.page-article .entry-content blockquote p,
.cms-page-content .entry-content blockquote p {
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Lists - Enhanced Styling */
.page-article .entry-content ul,
.cms-page-content .entry-content ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.page-article .entry-content ul li,
.cms-page-content .entry-content ul li {
    position: relative;
    padding: 12px 0 12px 35px;
    margin-bottom: 8px;
    line-height: 1.7;
    border-bottom: 1px solid #f3f4f6;
}

.page-article .entry-content ul li:last-child,
.cms-page-content .entry-content ul li:last-child {
    border-bottom: none;
}

.page-article .entry-content ul li::before,
.cms-page-content .entry-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 14px;
    color: #10b981;
    font-size: 14px;
}

/* Ordered Lists */
.page-article .entry-content ol,
.cms-page-content .entry-content ol {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    counter-reset: item;
}

.page-article .entry-content ol li,
.cms-page-content .entry-content ol li {
    position: relative;
    padding: 15px 20px 15px 55px;
    margin-bottom: 10px;
    line-height: 1.7;
    counter-increment: item;
    background: #f9fafb;
    border-radius: 8px;
}

.page-article .entry-content ol li::before,
.cms-page-content .entry-content ol li::before {
    content: counter(item);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #304b92 0%, #3d5cae 100%);
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Links */
.page-article .entry-content a,
.cms-page-content .entry-content a {
    color: #304b92;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.page-article .entry-content a:hover,
.cms-page-content .entry-content a:hover {
    color: #ea272f;
    border-bottom-color: #ea272f;
}

/* Strong/Bold Text */
.page-article .entry-content strong,
.cms-page-content .entry-content strong {
    color: #1f2937;
    font-weight: 600;
}

/* Tables */
.page-article .entry-content table,
.cms-page-content .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.page-article .entry-content table th,
.cms-page-content .entry-content table th {
    background: linear-gradient(135deg, #304b92 0%, #3d5cae 100%);
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.page-article .entry-content table td,
.cms-page-content .entry-content table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.page-article .entry-content table tr:nth-child(even),
.cms-page-content .entry-content table tr:nth-child(even) {
    background: #f9fafb;
}

.page-article .entry-content table tr:hover,
.cms-page-content .entry-content table tr:hover {
    background: #f0f4ff;
}

/* Horizontal Rule - Decorative Divider */
.page-article .entry-content hr,
.cms-page-content .entry-content hr {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 20%, #e5e7eb 80%, transparent 100%);
    margin: 50px 0;
    position: relative;
}

.page-article .entry-content hr::before,
.cms-page-content .entry-content hr::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #ea272f;
    border-radius: 50%;
}

/* Important Notice Box */
.page-article .entry-content .wp-block-quote.is-style-large,
.page-article .entry-content .important-notice,
.cms-page-content .entry-content .wp-block-quote.is-style-large,
.cms-page-content .entry-content .important-notice {
    background: linear-gradient(135deg, #fef3cd 0%, #fff8e1 100%);
    border-left: 5px solid #f59e0b;
    padding: 25px 30px;
    border-radius: 0 12px 12px 0;
    margin: 35px 0;
}

.page-article .entry-content .wp-block-quote.is-style-large p,
.page-article .entry-content .important-notice p,
.cms-page-content .entry-content .wp-block-quote.is-style-large p,
.cms-page-content .entry-content .important-notice p {
    color: #92400e;
    margin: 0;
}

/* Policy Page Specific Enhancements */
.cms-page-content .entry-content .policy-section {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 35px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.cms-page-content .entry-content .policy-section h3 {
    margin-top: 0;
}

/* Contact Info Box in Content */
.cms-page-content .entry-content .contact-details-box {
    background: linear-gradient(135deg, #304b92 0%, #3d5cae 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 35px 0;
}

.cms-page-content .entry-content .contact-details-box h4 {
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.cms-page-content .entry-content .contact-details-box p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.cms-page-content .entry-content .contact-details-box a {
    color: white;
    border-bottom-color: rgba(255,255,255,0.5);
}

.cms-page-content .entry-content .contact-details-box a:hover {
    color: #fcd34d;
    border-bottom-color: #fcd34d;
}

/* Key Points/Benefits Grid */
.cms-page-content .entry-content .wp-block-columns {
    gap: 25px;
    margin: 40px 0;
}

.cms-page-content .entry-content .wp-block-column {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.cms-page-content .entry-content .wp-block-column:hover {
    border-color: #304b92;
    box-shadow: 0 8px 25px rgba(48, 75, 146, 0.1);
    transform: translateY(-3px);
}

/* WooCommerce Default Pages (Refund/Returns, Terms, etc.) */
.woocommerce-page .cms-page-content .entry-content,
.page-template-default .cms-page-content .entry-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Common Page Styles */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    color: #304b92;
    font-size: 36px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #6b7280;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #304b92 0%, #3d5cae 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.hero-banner h2 {
    color: white;
    margin-bottom: 20px;
}

.hero-banner p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.hero-banner-small {
    padding: 25px;
    text-align: center;
}

.hero-banner-small p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Grid Layouts */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

/* Card Styles */
.card {
    padding: 30px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
}

.card h3 {
    color: #ea272f;
    margin-bottom: 15px;
    font-size: 22px;
}

.card p {
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

/* Content Sections */
.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: #304b92;
    margin-top: 40px;
    margin-bottom: 15px;
}

.content-section h3 {
    color: #ea272f;
    margin-top: 25px;
    margin-bottom: 10px;
}

.content-section p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-section ul,
.content-section ol {
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 8px;
}

.content-section strong {
    color: #304b92;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 15px;
    margin-bottom: 10px;
    background: #f9fafb;
    border-left: 4px solid #ea272f;
}

.feature-list li strong {
    color: #304b92;
}

/* Info Box */
.info-box {
    border-left: 4px solid #ea272f;
    padding: 20px;
    margin-bottom: 30px;
    background: #f9fafb;
}

.info-box p {
    line-height: 1.7;
    margin: 0;
}

.info-box-blue {
    border-left: 4px solid #304b92;
}

/* Alert Box */
.alert-box {
    background: #fef2f2;
    border-left: 4px solid #ea272f;
    padding: 20px;
    margin-bottom: 25px;
}

.alert-box ol,
.alert-box ul {
    line-height: 2;
    color: #374151;
    padding-left: 20px;
    margin: 0;
}

/* Contact Box */
.contact-box {
    background: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #304b92;
}

.contact-box p {
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box strong {
    color: #304b92;
}

/* Call to Action Section */
.cta-section {
    background: #f9fafb;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
}

.cta-section h2 {
    color: #304b92;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 30px;
}

/* Button Container */
.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ea272f;
    color: white;
}

.btn-primary:hover {
    background: #c21f26;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 39, 47, 0.3);
}

.btn-secondary {
    background: #304b92;
    color: white;
}

.btn-secondary:hover {
    background: #243a75;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 75, 146, 0.3);
}

/* Policy Sections */
.policy-header {
    color: #304b92;
    margin-bottom: 20px;
}

.policy-date {
    color: #6b7280;
    margin-bottom: 30px;
}

.policy-date strong {
    font-weight: 600;
}

/* Returns/Refund Specific */
.highlight-box {
    border: 2px solid #e5e7eb;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.highlight-title {
    color: #ea272f;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* ========================================
   CONTACT FORM 7 STYLING
   ======================================== */

/* Contact Form Container */
.wpcf7 {
    max-width: 100%;
}

.us-contact-form {
    font-family: 'Inter', sans-serif;
}

/* Form Fields Container */
.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-fields label {
    display: block;
    font-weight: 600;
    color: #304b92;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Input Fields */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
    color: #374151;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border-color: #304b92;
    box-shadow: 0 0 0 3px rgba(48, 75, 146, 0.15);
}

.wpcf7 textarea {
    min-height: 180px;
    resize: vertical;
}

/* File Upload */
.wpcf7 input[type="file"] {
    width: 100%;
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border: 2px dashed #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpcf7 input[type="file"]:hover {
    border-color: #304b92;
    background: #ffffff;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
    display: inline-block;
    padding: 16px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: linear-gradient(135deg, #ea272f 0%, #c21f26 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
}

.wpcf7 input[type="submit"]:hover {
    background: linear-gradient(135deg, #c21f26 0%, #a01b21 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 39, 47, 0.3);
}

/* Response Messages */
.wpcf7-response-output {
    margin: 20px 0 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 8px !important;
    font-size: 14px;
}

.wpcf7-mail-sent-ok {
    background: #d1fae5 !important;
    border-color: #10b981 !important;
    color: #065f46 !important;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background: #fee2e2 !important;
    border-color: #ef4444 !important;
    color: #991b1b !important;
}

.wpcf7-not-valid-tip {
    color: #ef4444;
    font-size: 13px;
    margin-top: 5px;
}

.wpcf7-not-valid {
    border-color: #ef4444 !important;
}

/* Newsletter Form (Footer) */
.newsletter-form-row {
    display: flex;
    gap: 10px;
}

.newsletter-form-row .wpcf7-form-control-wrap {
    flex: 1;
}

.newsletter-form-row input[type="email"] {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-size: 14px;
}

.newsletter-form-row input[type="submit"] {
    padding: 12px 25px;
    white-space: nowrap;
}

/* Spinner */
.wpcf7-spinner {
    display: none;
    margin-left: 10px;
}

.wpcf7.submitting .wpcf7-spinner {
    display: inline-block;
}

/* ========================================
   CONTACT PAGE LAYOUT
   ======================================== */

.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 40px;
    background: linear-gradient(135deg, #304b92 0%, #3d5cae 100%);
    border-radius: 15px;
    color: #ffffff;
}

.contact-info-section h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 28px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 24px;
    color: #ea272f;
    background: #ffffff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-info-item-content h4 {
    color: #ffffff;
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.contact-info-item-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.contact-info-item-content a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info-item-content a:hover {
    opacity: 0.8;
}

.contact-social-links {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-social-links h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 16px;
}

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

.contact-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #304b92;
    border-radius: 8px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-social-icons a:hover {
    background: #ea272f;
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-form-section {
    padding: 40px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
}

.contact-form-section h2 {
    color: #304b92;
    margin-bottom: 25px;
    font-size: 28px;
    border-bottom: 3px solid #ea272f;
    padding-bottom: 15px;
}

/* Quote Page Specific */
.quote-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.quote-intro p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 900px) {
    .contact-page-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form-row {
        flex-direction: column;
    }

    .newsletter-form-row input[type="submit"] {
        width: 100%;
    }

    /* Page Hero Responsive */
    .page-hero {
        padding: 50px 20px;
    }

    .page-hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-container,
    .page-container-narrow {
        padding: 15px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .hero-banner {
        padding: 25px;
    }

    .grid-3-col,
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 20px;
    }

    .button-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .cta-section {
        padding: 25px;
    }

    /* Responsive Spacing */
    .site-main {
        margin-top: 25px;
        margin-bottom: 40px;
    }

    /* Page Hero Mobile */
    .page-hero {
        padding: 40px 15px;
    }

    .page-hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .hero-shape-1,
    .hero-shape-2 {
        display: none;
    }

    /* Page Content Wrapper Mobile */
    .page-content-wrapper {
        padding: 40px 15px;
    }

    .container-narrow {
        padding: 0;
    }

    /* Page CTA Mobile */
    .page-cta-section {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .page-cta-content h3 {
        font-size: 1.5rem;
    }

    .page-cta-buttons {
        flex-direction: column;
    }

    .page-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Entry Content Mobile - CMS Pages Only */
    .cms-page-content {
        padding: 30px 15px;
    }

    .cms-page-content .entry-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .page-article .entry-content,
    .cms-page-content .entry-content {
        font-size: 1rem;
    }

    .page-article .entry-content h2,
    .cms-page-content .entry-content h2 {
        font-size: 1.5rem;
        margin-top: 40px;
    }

    .page-article .entry-content h3,
    .cms-page-content .entry-content h3 {
        font-size: 1.2rem;
        margin-top: 30px;
    }

    .page-article .entry-content blockquote,
    .cms-page-content .entry-content blockquote {
        padding: 20px 25px;
        margin: 30px 0;
    }

    .page-article .entry-content blockquote::before,
    .cms-page-content .entry-content blockquote::before {
        display: none;
    }

    .page-article .entry-content ol li,
    .cms-page-content .entry-content ol li {
        padding: 12px 15px 12px 50px;
    }

    .page-article .entry-content ol li::before,
    .cms-page-content .entry-content ol li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .cms-page-content .entry-content .policy-section {
        padding: 25px 20px;
    }

    .cms-page-content .entry-content .contact-details-box {
        padding: 25px 20px;
    }

    .page-article .entry-content table th,
    .page-article .entry-content table td,
    .cms-page-content .entry-content table th,
    .cms-page-content .entry-content table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}
